Title: [97066] trunk/LayoutTests
Revision
97066
Author
[email protected]
Date
2011-10-10 09:58:23 -0700 (Mon, 10 Oct 2011)

Log Message

Unreviewed fix for the test. The amount of used memory was calculated incorrectly.

* inspector/performance/resources/network-append-30-requests.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (97065 => 97066)


--- trunk/LayoutTests/ChangeLog	2011-10-10 16:40:44 UTC (rev 97065)
+++ trunk/LayoutTests/ChangeLog	2011-10-10 16:58:23 UTC (rev 97066)
@@ -1,3 +1,9 @@
+2011-10-10  Ilya Tikhonovsky  <[email protected]>
+
+        Unreviewed fix for the test. The amount of used memory was calculated incorrectly.
+
+        * inspector/performance/resources/network-append-30-requests.html:
+
 2011-09-28  Pavel Podivilov  <[email protected]>
 
         Web Inspector: RawSourceCode could be mapped to multiple sources.

Modified: trunk/LayoutTests/inspector/performance/resources/network-append-30-requests.html (97065 => 97066)


--- trunk/LayoutTests/inspector/performance/resources/network-append-30-requests.html	2011-10-10 16:40:44 UTC (rev 97065)
+++ trunk/LayoutTests/inspector/performance/resources/network-append-30-requests.html	2011-10-10 16:58:23 UTC (rev 97066)
@@ -24,12 +24,14 @@
         var cookie = InspectorTest.timer.start("network-append-30-requests");
         originalRefresh.call(this);
         InspectorTest.timer.finish(cookie);
+        WebInspector.panels.network._networkLogView._reset();
+        // In real life this array is cleaning up at navigation event.
+        WebInspector.networkLog._resources = [];
         InspectorTest.timer.done();
     }
 
     function test(timer)
     {
-        WebInspector.panels.network._networkLogView._reset();
         InspectorTest.evaluateInPage("makeXHRRequests(30)");
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to