Title: [96919] trunk/Source/WebKit/chromium
Revision
96919
Author
pfeld...@chromium.org
Date
2011-10-07 02:27:08 -0700 (Fri, 07 Oct 2011)

Log Message

2011-10-07  Pavel Feldman  <pfeld...@google.com>

        Not reviewed: also add glass pane to the frame document's body.

        * src/js/DevTools.js:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (96918 => 96919)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-10-07 09:19:07 UTC (rev 96918)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-10-07 09:27:08 UTC (rev 96919)
@@ -1,5 +1,11 @@
 2011-10-07  Pavel Feldman  <pfeld...@google.com>
 
+        Not reviewed: also add glass pane to the frame document's body.
+
+        * src/js/DevTools.js:
+
+2011-10-07  Pavel Feldman  <pfeld...@google.com>
+
         Web Inspector: glass pane does not disappear after network panel's grid column resize.
         https://bugs.webkit.org/show_bug.cgi?id=69607
 

Modified: trunk/Source/WebKit/chromium/src/js/DevTools.js (96918 => 96919)


--- trunk/Source/WebKit/chromium/src/js/DevTools.js	2011-10-07 09:19:07 UTC (rev 96918)
+++ trunk/Source/WebKit/chromium/src/js/DevTools.js	2011-10-07 09:27:08 UTC (rev 96919)
@@ -108,7 +108,7 @@
         glassPane = document.createElement("div");
         glassPane.style.cssText = "position:absolute;top:0;bottom:0;left:0;right:0;opacity:0;z-index:1";
         glassPane.id = "glass-pane-for-drag";
-        element.parentElement.appendChild(glassPane);
+        element.ownerDocument.body.appendChild(glassPane);
     }
 
     function hideGlassPane()
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to