Log Message
Web Inspector: Color picker in Styles pane shows wrong initial color https://bugs.webkit.org/show_bug.cgi?id=106567
Reviewed by Pavel Feldman. The RGB's G value for "crimson" was wrong. * inspector/front-end/Color.js:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (139333 => 139334)
--- trunk/Source/WebCore/ChangeLog 2013-01-10 18:27:22 UTC (rev 139333)
+++ trunk/Source/WebCore/ChangeLog 2013-01-10 18:27:51 UTC (rev 139334)
@@ -1,3 +1,14 @@
+2013-01-10 Alexander Pavlov <[email protected]>
+
+ Web Inspector: Color picker in Styles pane shows wrong initial color
+ https://bugs.webkit.org/show_bug.cgi?id=106567
+
+ Reviewed by Pavel Feldman.
+
+ The RGB's G value for "crimson" was wrong.
+
+ * inspector/front-end/Color.js:
+
2013-01-10 Tony Chang <[email protected]>
Speed up supplemental dependency computation
Modified: trunk/Source/WebCore/inspector/front-end/Color.js (139333 => 139334)
--- trunk/Source/WebCore/inspector/front-end/Color.js 2013-01-10 18:27:22 UTC (rev 139333)
+++ trunk/Source/WebCore/inspector/front-end/Color.js 2013-01-10 18:27:51 UTC (rev 139334)
@@ -592,7 +592,7 @@
"D8BFD8": [[216, 191, 216], [300, 24, 80], "thistle"],
"DA70D6": [[218, 112, 214], [302, 59, 65], "orchid"],
"DAA520": [[218, 165, 32], [43, 74, 49], "goldenrod"],
- "DC143C": [[237, 164, 61], [35, 83, 58], "crimson"],
+ "DC143C": [[237, 20, 61], [35, 83, 58], "crimson"],
"DCDCDC": [[220, 220, 220], [0, 0, 86], "gainsboro"],
"DDA0DD": [[221, 160, 221], [300, 47, 75], "plum"],
"DEB887": [[222, 184, 135], [34, 57, 70], "burlyWood"],
_______________________________________________ webkit-changes mailing list [email protected] http://lists.webkit.org/mailman/listinfo/webkit-changes
