Changeset 95383 in webkit


Ignore:
Timestamp:
Sep 17, 2011 10:43:36 AM (13 years ago)
Author:
loislo@chromium.org
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 Pavel Feldman.

  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelinePanel.prototype._createFileSelector):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95382 r95383  
     12011-09-17  Ilya Tikhonovsky  <loislo@chromium.org>
     2
     3        Web Inspector: file open dialog appears when user clicks on the timeline bar in timeline panel.
     4        https://bugs.webkit.org/show_bug.cgi?id=68312
     5
     6        Reviewed by Pavel Feldman.
     7
     8       * inspector/front-end/TimelinePanel.js:
     9        (WebInspector.TimelinePanel.prototype._createFileSelector):
     10
    1112011-09-17  Jeff Miller  <jeffm@apple.com>
    212
  • trunk/Source/WebCore/inspector/front-end/TimelinePanel.js

    r95302 r95383  
    252252        var fileSelectorElement = document.createElement("input");
    253253        fileSelectorElement.type = "file";
    254         fileSelectorElement.style.opacity = 0;
     254        fileSelectorElement.style.display = "none";
    255255        fileSelectorElement.onchange = this._loadFromFile.bind(this);
    256256        this.element.appendChild(fileSelectorElement);
Note: See TracChangeset for help on using the changeset viewer.