Title: [172515] trunk/Source/WebInspectorUI
Revision
172515
Author
[email protected]
Date
2014-08-12 21:15:08 -0700 (Tue, 12 Aug 2014)

Log Message

Web Inspector: Timeline record content view close button does not work after scrolling, invisible scrollbar
https://bugs.webkit.org/show_bug.cgi?id=135863

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

A workaround is to not have position:relative content inside of
scrollable region. Turns out this was only done in two places,
and I do not see any absolutely positioned content in navigation
sidebar content tree outlines. This also fixes clicking on the
reload button if you've scrolled the Resources sidebar.

* UserInterface/Views/NavigationSidebarPanel.css:
(.navigation-sidebar-panel-content-tree-outline .children): Deleted.
(.navigation-sidebar-panel-content-tree-outline .item): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (172514 => 172515)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-08-13 04:07:15 UTC (rev 172514)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-08-13 04:15:08 UTC (rev 172515)
@@ -1,5 +1,22 @@
 2014-08-12  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Timeline record content view close button does not work after scrolling, invisible scrollbar
+        https://bugs.webkit.org/show_bug.cgi?id=135863
+
+        Reviewed by Timothy Hatcher.
+
+        A workaround is to not have position:relative content inside of
+        scrollable region. Turns out this was only done in two places,
+        and I do not see any absolutely positioned content in navigation
+        sidebar content tree outlines. This also fixes clicking on the
+        reload button if you've scrolled the Resources sidebar. 
+
+        * UserInterface/Views/NavigationSidebarPanel.css:
+        (.navigation-sidebar-panel-content-tree-outline .children): Deleted.
+        (.navigation-sidebar-panel-content-tree-outline .item): Deleted.
+
+2014-08-12  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: Remove unused variable in Platform.js
         https://bugs.webkit.org/show_bug.cgi?id=135869
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.css (172514 => 172515)


--- trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.css	2014-08-13 04:07:15 UTC (rev 172514)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/NavigationSidebarPanel.css	2014-08-13 04:15:08 UTC (rev 172515)
@@ -116,8 +116,6 @@
 
 .navigation-sidebar-panel-content-tree-outline,
 .navigation-sidebar-panel-content-tree-outline .children {
-    position: relative;
-
     padding: 0;
     margin: 0;
 
@@ -135,8 +133,6 @@
 }
 
 .navigation-sidebar-panel-content-tree-outline .item {
-    position: relative;
-
     height: 36px;
     line-height: 34px;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to