Changeset 160145 in webkit
- Timestamp:
- Dec 4, 2013, 4:52:36 PM (13 years ago)
- Location:
- trunk/Source/WebInspectorUI
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UserInterface/ColorWheel.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebInspectorUI/ChangeLog
r160143 r160145 1 2013-12-04 Antoine Quint <graouts@apple.com> 2 3 Web Inspector: ColorWheel uses old Color constructor 4 https://bugs.webkit.org/show_bug.cgi?id=125260 5 6 Reviewed by Joseph Pecoraro. 7 8 Update to new WebInspector.Color constructor signature and use a clear color. 9 10 * UserInterface/ColorWheel.js: 11 (WebInspector.ColorWheel.prototype.get tintedColor): 12 (WebInspector.ColorWheel.prototype.get rawColor): 13 1 14 2013-12-04 Antoine Quint <graouts@apple.com> 2 15 -
trunk/Source/WebInspectorUI/UserInterface/ColorWheel.js
r160143 r160145 86 86 return this._colorAtPointWithBrightness(this._crosshairPosition.x, this._crosshairPosition.y, this._brightness); 87 87 88 return new WebInspector.Color( "white");88 return new WebInspector.Color(WebInspector.Color.Format.RGBA, [0, 0, 0, 0]); 89 89 }, 90 90 … … 101 101 return this._colorAtPointWithBrightness(this._crosshairPosition.x, this._crosshairPosition.y, 1); 102 102 103 return new WebInspector.Color( "white");103 return new WebInspector.Color(WebInspector.Color.Format.RGBA, [0, 0, 0, 0]); 104 104 }, 105 105
Note:
See TracChangeset
for help on using the changeset viewer.