Title: [148668] trunk/Source/WebCore
Revision
148668
Author
commit-qu...@webkit.org
Date
2013-04-18 05:54:42 -0700 (Thu, 18 Apr 2013)

Log Message

Web Inspector: Toolbar icons are displayed incorrectly
https://bugs.webkit.org/show_bug.cgi?id=114792

Patch by Seokju Kwon <seokju.k...@gmail.com> on 2013-04-18
Reviewed by Timothy Hatcher.

Inspector uses small toolbar icons when docking the inspector.
So icons should have different x position.

No tests because no behavior change is expected.

* inspector/front-end/inspector.css: Add missing 'background-position-x' values.
(body.dock-to-bottom .toolbar-item.profiles .toolbar-icon):
(body.dock-to-bottom .toolbar-item.cpu-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.css-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.heap-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.canvas-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.memory-chart-profiler .toolbar-icon):
(body.dock-to-bottom .toolbar-item.memory-snapshot-profiler .toolbar-icon):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (148667 => 148668)


--- trunk/Source/WebCore/ChangeLog	2013-04-18 12:43:55 UTC (rev 148667)
+++ trunk/Source/WebCore/ChangeLog	2013-04-18 12:54:42 UTC (rev 148668)
@@ -1,3 +1,24 @@
+2013-04-18  Seokju Kwon  <seokju.k...@gmail.com>
+
+        Web Inspector: Toolbar icons are displayed incorrectly
+        https://bugs.webkit.org/show_bug.cgi?id=114792
+
+        Reviewed by Timothy Hatcher.
+
+        Inspector uses small toolbar icons when docking the inspector.
+        So icons should have different x position.
+
+        No tests because no behavior change is expected.
+
+        * inspector/front-end/inspector.css: Add missing 'background-position-x' values.
+        (body.dock-to-bottom .toolbar-item.profiles .toolbar-icon):
+        (body.dock-to-bottom .toolbar-item.cpu-profiler .toolbar-icon):
+        (body.dock-to-bottom .toolbar-item.css-profiler .toolbar-icon):
+        (body.dock-to-bottom .toolbar-item.heap-profiler .toolbar-icon):
+        (body.dock-to-bottom .toolbar-item.canvas-profiler .toolbar-icon):
+        (body.dock-to-bottom .toolbar-item.memory-chart-profiler .toolbar-icon):
+        (body.dock-to-bottom .toolbar-item.memory-snapshot-profiler .toolbar-icon):
+
 2013-04-17  Jaehun Lim  <ljaehun....@samsung.com>
 
         [css3-text] Rendering -webkit-hanging value for text-indent from css3-text

Modified: trunk/Source/WebCore/inspector/front-end/inspector.css (148667 => 148668)


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2013-04-18 12:43:55 UTC (rev 148667)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2013-04-18 12:54:42 UTC (rev 148668)
@@ -510,31 +510,55 @@
     background-position-x: -160px;
 }
 
+body.dock-to-bottom .toolbar-item.profiles .toolbar-icon {
+    background-position-x: -120px;
+}
+
 .toolbar-item.cpu-profiler .toolbar-icon {
     background-position-x: -160px;
 }
 
+body.dock-to-bottom .toolbar-item.cpu-profiler .toolbar-icon {
+    background-position-x: -120px;
+}
+
 .toolbar-item.css-profiler .toolbar-icon {
     background-position-x: -160px;
 }
 
+body.dock-to-bottom .toolbar-item.css-profiler .toolbar-icon {
+    background-position-x: -120px;
+}
+
 .toolbar-item.heap-profiler .toolbar-icon {
     background-position-x: -160px;
 }
 
+body.dock-to-bottom .toolbar-item.heap-profiler .toolbar-icon {
+    background-position-x: -120px;
+}
+
 .toolbar-item.canvas-profiler .toolbar-icon {
     background-position-x: -160px;
 }
 
+body.dock-to-bottom .toolbar-item.canvas-profiler .toolbar-icon {
+    background-position-x: -120px;
+}
+
 .toolbar-item.memory-chart-profiler .toolbar-icon {
     background-position-x: -160px;
 }
 
+body.dock-to-bottom .toolbar-item.memory-chart-profiler .toolbar-icon {
+    background-position-x: -120px;
+}
+
 .toolbar-item.memory-snapshot-profiler .toolbar-icon {
     background-position-x: -160px;
 }
 
-body.dock-to-bottom .toolbar-item.profiles .toolbar-icon {
+body.dock-to-bottom .toolbar-item.memory-snapshot-profiler .toolbar-icon {
     background-position-x: -120px;
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to