Log Message
Web Inspector: "aqua" and "fuchsia" aren't detected as colors https://bugs.webkit.org/show_bug.cgi?id=204085
Reviewed by Devin Rousso. * UserInterface/Models/Color.js:
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (252447 => 252448)
--- trunk/Source/WebInspectorUI/ChangeLog 2019-11-14 03:36:53 UTC (rev 252447)
+++ trunk/Source/WebInspectorUI/ChangeLog 2019-11-14 04:04:17 UTC (rev 252448)
@@ -1,3 +1,12 @@
+2019-11-13 Nikita Vasilyev <[email protected]>
+
+ Web Inspector: "aqua" and "fuchsia" aren't detected as colors
+ https://bugs.webkit.org/show_bug.cgi?id=204085
+
+ Reviewed by Devin Rousso.
+
+ * UserInterface/Models/Color.js:
+
2019-11-13 Devin Rousso <[email protected]>
Web Inspector: Uncaught Exception: Invalid type of argument 'eventName' for command 'DOMDebugger.setEventBreakpoint' call. It must be 'string' but it is 'object'.
Modified: trunk/Source/WebInspectorUI/UserInterface/Models/Color.js (252447 => 252448)
--- trunk/Source/WebInspectorUI/UserInterface/Models/Color.js 2019-11-14 03:36:53 UTC (rev 252447)
+++ trunk/Source/WebInspectorUI/UserInterface/Models/Color.js 2019-11-14 04:04:17 UTC (rev 252448)
@@ -742,6 +742,7 @@
WI.Color.Keywords = {
"aliceblue": [240, 248, 255, 1],
"antiquewhite": [250, 235, 215, 1],
+ "aqua": [0, 255, 255, 1],
"aquamarine": [127, 255, 212, 1],
"azure": [240, 255, 255, 1],
"beige": [245, 245, 220, 1],
@@ -787,6 +788,7 @@
"firebrick": [178, 34, 34, 1],
"floralwhite": [255, 250, 240, 1],
"forestgreen": [34, 139, 34, 1],
+ "fuchsia": [255, 0, 255, 1],
"gainsboro": [220, 220, 220, 1],
"ghostwhite": [248, 248, 255, 1],
"gold": [255, 215, 0, 1],
_______________________________________________ webkit-changes mailing list [email protected] https://lists.webkit.org/mailman/listinfo/webkit-changes
