Changeset 74259 in webkit


Ignore:
Timestamp:
Dec 17, 2010 6:37:02 AM (13 years ago)
Author:
podivilov@chromium.org
Message:

2010-12-17 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: [REGRESSION] scripts in scripts panel are not updated on reload.
https://bugs.webkit.org/show_bug.cgi?id=51101

  • inspector/front-end/ResourceManager.js: (WebInspector.ResourceTreeModel.prototype.didCommitLoadForFrame):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r74257 r74259  
     12010-12-17  Pavel Podivilov  <podivilov@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: [REGRESSION] scripts in scripts panel are not updated on reload.
     6        https://bugs.webkit.org/show_bug.cgi?id=51101
     7
     8        * inspector/front-end/ResourceManager.js:
     9        (WebInspector.ResourceTreeModel.prototype.didCommitLoadForFrame):
     10
    1112010-12-17  Benjamin Poulain  <benjamin.poulain@nokia.com>
    212
  • trunk/WebCore/inspector/front-end/ResourceManager.js

    r73916 r74259  
    598598
    599599        var resourcesForFrame = this._resourcesByFrameId[frame.id];
    600         for (var i = 0; resourcesForFrame && i < resourcesForFrame.length; ++i) {
    601             WebInspector.resourceManager._bindResourceURL(resourcesForFrame[i]);
     600        for (var i = 0; resourcesForFrame && i < resourcesForFrame.length; ++i)
    602601            WebInspector.panels.resources.addResourceToFrame(frame.id, resourcesForFrame[i]);
    603         }
    604602    },
    605603
Note: See TracChangeset for help on using the changeset viewer.