Web Inspector: move heap data stats to separate tab.
authorloislo@chromium.org <loislo@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Sun, 18 Dec 2011 15:13:08 +0000 (15:13 +0000)
committerloislo@chromium.org <loislo@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Sun, 18 Dec 2011 15:13:08 +0000 (15:13 +0000)
https://bugs.webkit.org/show_bug.cgi?id=74704

Reviewed by Pavel Feldman.

* inspector/performance-test.js:
(initialize_TimeTracker.InspectorTest.runPerformanceTest.Timer.prototype._dump):
(initialize_TimeTracker.InspectorTest.runPerformanceTest):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103175 268f45cc-cd09-0410-ab3c-d52691b4dbfc

PerformanceTests/ChangeLog
PerformanceTests/inspector/performance-test.js

index 98b23a9..098972b 100644 (file)
@@ -1,3 +1,14 @@
+2011-12-18  Ilya Tikhonovsky  <loislo@chromium.org>
+
+        Web Inspector: move heap data stats to separate tab.
+        https://bugs.webkit.org/show_bug.cgi?id=74704
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/performance-test.js:
+        (initialize_TimeTracker.InspectorTest.runPerformanceTest.Timer.prototype._dump):
+        (initialize_TimeTracker.InspectorTest.runPerformanceTest):
+
 2011-12-01  Ilya Tikhonovsky  <loislo@chromium.org>
 
         Web Inspector: chromium: move and adapt Inspector's performance tests for running with run-inspector-perf-tests.py.
index f1de9d0..b0cf495 100644 (file)
@@ -78,9 +78,8 @@ InspectorTest.runPerformanceTest = function(perfTest, executeTime, callback)
             var url = WebInspector.inspectedPageURL;
             var regExp = /([^\/]+)\.html/;
             var matches = regExp.exec(url);
-            InspectorTest.dumpTestStats(groupName, "heap-delta-" + matches[1], this._heapSizeDeltas, "kB", 1024);
+            InspectorTest.dumpTestStats("heap-delta", matches[1], this._heapSizeDeltas, "kB", 1024);
         },
-
     }
 
     InspectorTest.timer = new Timer(perfTest, callback);