Title: [172488] trunk/Source/WebInspectorUI
Revision
172488
Author
[email protected]
Date
2014-08-12 13:43:37 -0700 (Tue, 12 Aug 2014)

Log Message

Web Inspector: Timeline selection range creation does not work when clicking event bubble or near bottom of overview
https://bugs.webkit.org/show_bug.cgi?id=135849

Patch by Joseph Pecoraro <[email protected]> on 2014-08-12
Reviewed by Timothy Hatcher.

Click events on elements in the graph container (event bubbles) or
in the scroll container (bottom 16px) were becoming the event targets.
As siblings of the ruler, the dispatch would not go through the ruler.
The ruler was supposed to be overlaying everything in the overview,
so give the ruler a z-index so it really is overlaying elements.

* UserInterface/Views/TimelineRuler.css:
(.timeline-ruler):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (172487 => 172488)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-08-12 20:37:37 UTC (rev 172487)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-08-12 20:43:37 UTC (rev 172488)
@@ -1,5 +1,21 @@
 2014-08-12  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Timeline selection range creation does not work when clicking event bubble or near bottom of overview
+        https://bugs.webkit.org/show_bug.cgi?id=135849
+
+        Reviewed by Timothy Hatcher.
+
+        Click events on elements in the graph container (event bubbles) or
+        in the scroll container (bottom 16px) were becoming the event targets.
+        As siblings of the ruler, the dispatch would not go through the ruler.
+        The ruler was supposed to be overlaying everything in the overview,
+        so give the ruler a z-index so it really is overlaying elements.
+
+        * UserInterface/Views/TimelineRuler.css:
+        (.timeline-ruler):
+
+2014-08-12  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: GoToLine dialog clear text button looks poor
         https://bugs.webkit.org/show_bug.cgi?id=135828
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css (172487 => 172488)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css	2014-08-12 20:37:37 UTC (rev 172487)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineRuler.css	2014-08-12 20:43:37 UTC (rev 172488)
@@ -26,6 +26,7 @@
 .timeline-ruler {
     position: relative;
     pointer-events: none;
+    z-index: 1;
 }
 
 .timeline-ruler.allows-time-range-selection {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to