Title: [188396] trunk/Source/WebInspectorUI
Revision
188396
Author
mattba...@apple.com
Date
2015-08-13 13:27:57 -0700 (Thu, 13 Aug 2015)

Log Message

Web Inspector: Clearing frames timeline doesn't remove current time marker
https://bugs.webkit.org/show_bug.cgi?id=147650

Reviewed by Timothy Hatcher.

The rendering frames timeline offsets all markers by 1px to align them on frame
boundaries, which causes the current time marker to be visible even with left: 0px.
We can exclude the current time marker without it being noticable during recording.

* UserInterface/Views/TimelineOverview.css:

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (188395 => 188396)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-08-13 20:26:45 UTC (rev 188395)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-08-13 20:27:57 UTC (rev 188396)
@@ -1,3 +1,16 @@
+2015-08-13  Matt Baker  <mattba...@apple.com>
+
+        Web Inspector: Clearing frames timeline doesn't remove current time marker
+        https://bugs.webkit.org/show_bug.cgi?id=147650
+
+        Reviewed by Timothy Hatcher.
+
+        The rendering frames timeline offsets all markers by 1px to align them on frame
+        boundaries, which causes the current time marker to be visible even with left: 0px.
+        We can exclude the current time marker without it being noticable during recording.
+
+        * UserInterface/Views/TimelineOverview.css:
+
 2015-08-13  Nikita Vasilyev  <nvasil...@apple.com>
 
         REGRESSION (r188325): Web Inspector: Fix vertical spacing in CodeMirror

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineOverview.css (188395 => 188396)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineOverview.css	2015-08-13 20:26:45 UTC (rev 188395)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineOverview.css	2015-08-13 20:27:57 UTC (rev 188396)
@@ -61,7 +61,7 @@
     -webkit-transform: translateX(5px);
 }
 
-.timeline-overview.frames > .timeline-ruler > .markers,
+.timeline-overview.frames > .timeline-ruler > .markers > .divider,
 .timeline-overview.frames > .timeline-ruler:not(.both-handles-clamped) > .shaded-area.right {
     -webkit-transform: translateX(1px);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to