Title: [188964] trunk/Source/WebInspectorUI
Revision
188964
Author
mattba...@apple.com
Date
2015-08-26 03:24:30 -0700 (Wed, 26 Aug 2015)

Log Message

Web Inspector: Rendering Frames legend item checkbox colors are too light
https://bugs.webkit.org/show_bug.cgi?id=148465

Reviewed by Timothy Hatcher.

* UserInterface/Views/ChartDetailsSectionRow.js:
(WebInspector.ChartDetailsSectionRow.prototype._addCheckboxColorFilter):
Gamma primitive should use an "exponent" attribute instead of "value".
Increased gamma exponent to 1.4.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (188963 => 188964)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-08-26 10:22:22 UTC (rev 188963)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-08-26 10:24:30 UTC (rev 188964)
@@ -1,3 +1,15 @@
+2015-08-26  Matt Baker  <mattba...@apple.com>
+
+        Web Inspector: Rendering Frames legend item checkbox colors are too light
+        https://bugs.webkit.org/show_bug.cgi?id=148465
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/ChartDetailsSectionRow.js:
+        (WebInspector.ChartDetailsSectionRow.prototype._addCheckboxColorFilter):
+        Gamma primitive should use an "exponent" attribute instead of "value".
+        Increased gamma exponent to 1.4.
+
 2015-08-26  Nikita Vasilyev  <nvasil...@apple.com>
 
         Web Inspector: Make DOM node attribute changes highlighting less obnoxious

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ChartDetailsSectionRow.js (188963 => 188964)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ChartDetailsSectionRow.js	2015-08-26 10:22:22 UTC (rev 188963)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ChartDetailsSectionRow.js	2015-08-26 10:24:30 UTC (rev 188964)
@@ -176,12 +176,12 @@
         {
             let gammaPrimitive = createSVGElement(tagName);
             gammaPrimitive.setAttribute("type", "gamma");
-            gammaPrimitive.setAttribute("value", value);
+            gammaPrimitive.setAttribute("exponent", value);
             return gammaPrimitive;
         }
 
         let componentTransferPrimitive = createSVGElement("feComponentTransfer");
-        componentTransferPrimitive.append(createGammaPrimitive("feFuncR", 1.2), createGammaPrimitive("feFuncG", 1.2), createGammaPrimitive("feFuncB", 1.2));
+        componentTransferPrimitive.append(createGammaPrimitive("feFuncR", 1.4), createGammaPrimitive("feFuncG", 1.4), createGammaPrimitive("feFuncB", 1.4));
         filterElement.append(colorMatrixPrimitive, componentTransferPrimitive);
 
         this._svgFiltersElement.append(filterElement);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to