Title: [96254] branches/chromium/874/Source/WebCore/inspector/front-end/TimelinePanel.js
Revision
96254
Author
[email protected]
Date
2011-09-28 13:21:33 -0700 (Wed, 28 Sep 2011)

Log Message

Merge 95794 - 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):

[email protected]

Modified Paths

Diff

Modified: branches/chromium/874/Source/WebCore/inspector/front-end/TimelinePanel.js (96253 => 96254)


--- branches/chromium/874/Source/WebCore/inspector/front-end/TimelinePanel.js	2011-09-28 20:18:35 UTC (rev 96253)
+++ branches/chromium/874/Source/WebCore/inspector/front-end/TimelinePanel.js	2011-09-28 20:21:33 UTC (rev 96254)
@@ -251,7 +251,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