Title: [90011] trunk/Source/WebCore
Revision
90011
Author
[email protected]
Date
2011-06-29 06:13:28 -0700 (Wed, 29 Jun 2011)

Log Message

2011-06-29  Vsevolod Vlasov  <[email protected]>

        Reviewed by Pavel Feldman.

        Web Inspector: REGRESSION Inspector failing to load resource content after navigation. Safari.
        https://bugs.webkit.org/show_bug.cgi?id=63480

        * inspector/front-end/NetworkManager.js:
        (WebInspector.NetworkDispatcher):
        (WebInspector.NetworkDispatcher.prototype.resourceLoadedFromMemoryCache):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90010 => 90011)


--- trunk/Source/WebCore/ChangeLog	2011-06-29 12:43:45 UTC (rev 90010)
+++ trunk/Source/WebCore/ChangeLog	2011-06-29 13:13:28 UTC (rev 90011)
@@ -1,3 +1,14 @@
+2011-06-29  Vsevolod Vlasov  <[email protected]>
+
+        Reviewed by Pavel Feldman.
+
+        Web Inspector: REGRESSION Inspector failing to load resource content after navigation. Safari.
+        https://bugs.webkit.org/show_bug.cgi?id=63480
+
+        * inspector/front-end/NetworkManager.js:
+        (WebInspector.NetworkDispatcher):
+        (WebInspector.NetworkDispatcher.prototype.resourceLoadedFromMemoryCache):
+
 2011-06-29  Mike West  <[email protected]>
 
         Reviewed by Pavel Feldman.

Modified: trunk/Source/WebCore/inspector/front-end/NetworkManager.js (90010 => 90011)


--- trunk/Source/WebCore/inspector/front-end/NetworkManager.js	2011-06-29 12:43:45 UTC (rev 90010)
+++ trunk/Source/WebCore/inspector/front-end/NetworkManager.js	2011-06-29 13:13:28 UTC (rev 90011)
@@ -72,7 +72,6 @@
     this._manager = manager;
     this._inflightResourcesById = {};
     this._inflightResourcesByURL = {};
-    this._lastIdentifierForCachedResource = 0;
     InspectorBackend.registerDomainDispatcher("Network", this);
 }
 
@@ -203,7 +202,7 @@
 
     resourceLoadedFromMemoryCache: function(frameId, loaderId, documentURL, time, cachedResource)
     {
-        var resource = this._createResource("cached:" + ++this._lastIdentifierForCachedResource, frameId, loaderId, cachedResource.url, documentURL);
+        var resource = this._createResource(null, frameId, loaderId, cachedResource.url, documentURL);
         this._updateResourceWithCachedResource(resource, cachedResource);
         resource.cached = true;
         resource.requestMethod = "GET";
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to