Title: [95794] trunk/Source/WebCore
Revision
95794
Author
[email protected]
Date
2011-09-23 05:06:15 -0700 (Fri, 23 Sep 2011)

Log Message

Web Inspector: file open dialog appears when user clicks on the timeline bar in timeline panel.
https://bugs.webkit.org/show_bug.cgi?id=68312

Reviewed by Yury Semikhatsky.

* inspector/front-end/TimelinePanel.js:
(WebInspector.TimelinePanel.prototype._createFileSelector):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (95793 => 95794)


--- trunk/Source/WebCore/ChangeLog	2011-09-23 11:43:30 UTC (rev 95793)
+++ trunk/Source/WebCore/ChangeLog	2011-09-23 12:06:15 UTC (rev 95794)
@@ -1,3 +1,13 @@
+2011-09-23  Ilya Tikhonovsky  <[email protected]>
+
+        Web Inspector: file open dialog appears when user clicks on the timeline bar in timeline panel.
+        https://bugs.webkit.org/show_bug.cgi?id=68312
+
+        Reviewed by Yury Semikhatsky.
+
+        * inspector/front-end/TimelinePanel.js:
+        (WebInspector.TimelinePanel.prototype._createFileSelector):
+
 2011-09-23  Sheriff Bot  <[email protected]>
 
         Unreviewed, rolling out r95383.

Modified: trunk/Source/WebCore/inspector/front-end/TimelinePanel.js (95793 => 95794)


--- trunk/Source/WebCore/inspector/front-end/TimelinePanel.js	2011-09-23 11:43:30 UTC (rev 95793)
+++ trunk/Source/WebCore/inspector/front-end/TimelinePanel.js	2011-09-23 12:06:15 UTC (rev 95794)
@@ -255,7 +255,8 @@
 
         var fileSelectorElement = document.createElement("input");
         fileSelectorElement.type = "file";
-        fileSelectorElement.style.opacity = 0;
+        fileSelectorElement.style.zIndex = -1;
+        fileSelectorElement.style.position = "absolute";
         fileSelectorElement._onchange_ = this._loadFromFile.bind(this);
         this.element.appendChild(fileSelectorElement);
         this._fileSelectorElement = fileSelectorElement;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to