Title: [204339] trunk/Source/WebInspectorUI
Revision
204339
Author
nvasil...@apple.com
Date
2016-08-10 12:35:40 -0700 (Wed, 10 Aug 2016)

Log Message

Web Inspector: Can't click on the lower half of "S" icon in _javascript_ Allocations timeline
https://bugs.webkit.org/show_bug.cgi?id=160743
<rdar://problem/27790098>

Reviewed by Timothy Hatcher.

"S" icons are covered by .scroll-container, which has `z-index: calc(var(--z-index-resizer) + 1)`.
Set larger z-index on the "S" icons.

* UserInterface/Views/HeapAllocationsTimelineOverviewGraph.css:
(.timeline-overview-graph.heap-allocations > img.snapshot):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (204338 => 204339)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-08-10 18:41:33 UTC (rev 204338)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-08-10 19:35:40 UTC (rev 204339)
@@ -1,3 +1,17 @@
+2016-08-10  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: Can't click on the lower half of "S" icon in _javascript_ Allocations timeline
+        https://bugs.webkit.org/show_bug.cgi?id=160743
+        <rdar://problem/27790098>
+
+        Reviewed by Timothy Hatcher.
+
+        "S" icons are covered by .scroll-container, which has `z-index: calc(var(--z-index-resizer) + 1)`.
+        Set larger z-index on the "S" icons.
+
+        * UserInterface/Views/HeapAllocationsTimelineOverviewGraph.css:
+        (.timeline-overview-graph.heap-allocations > img.snapshot):
+
 2016-08-08  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: Popover for Color Picker should update position when window resizes

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/HeapAllocationsTimelineOverviewGraph.css (204338 => 204339)


--- trunk/Source/WebInspectorUI/UserInterface/Views/HeapAllocationsTimelineOverviewGraph.css	2016-08-10 18:41:33 UTC (rev 204338)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/HeapAllocationsTimelineOverviewGraph.css	2016-08-10 19:35:40 UTC (rev 204339)
@@ -33,6 +33,9 @@
     top: 9px;
     width: 16px;
     height: 16px;
+
+    /* FIXME: Remove once https://webkit.org/b/147236 is fixed. */
+    z-index: calc(var(--z-index-resizer) + 2);
 }
 
 .timeline-overview-graph.heap-allocations > img.snapshot.invalid {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to