Title: [128463] trunk/LayoutTests
Revision
128463
Author
[email protected]
Date
2012-09-13 08:05:29 -0700 (Thu, 13 Sep 2012)

Log Message

Unreviewed fix for: REGRESSION(r128451): It broke inspector/profiler/memory-instrumentation-cached-images.html
https://bugs.webkit.org/show_bug.cgi?id=96653

* inspector/profiler/memory-instrumentation-cached-images.html:
* inspector/profiler/memory-instrumentation-cached-images-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (128462 => 128463)


--- trunk/LayoutTests/ChangeLog	2012-09-13 15:03:48 UTC (rev 128462)
+++ trunk/LayoutTests/ChangeLog	2012-09-13 15:05:29 UTC (rev 128463)
@@ -1,3 +1,11 @@
+2012-09-13  Ilya Tikhonovsky  <[email protected]>
+
+        Unreviewed fix for: REGRESSION(r128451): It broke inspector/profiler/memory-instrumentation-cached-images.html
+        https://bugs.webkit.org/show_bug.cgi?id=96653
+
+        * inspector/profiler/memory-instrumentation-cached-images.html:
+        * inspector/profiler/memory-instrumentation-cached-images-expected.txt:
+
 2012-09-13  Allan Sandfeld Jensen  <[email protected]>
 
         REGRESSION: hit test doesn't take iframe scroll position into account

Modified: trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images-expected.txt (128462 => 128463)


--- trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images-expected.txt	2012-09-13 15:03:48 UTC (rev 128462)
+++ trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images-expected.txt	2012-09-13 15:05:29 UTC (rev 128463)
@@ -2,5 +2,5 @@
 
 
 didReceiveMemorySnapshot
-PASS: MemoryCache.Image size is OK.
+PASS: Page.Image size is OK.
 

Modified: trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html (128462 => 128463)


--- trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html	2012-09-13 15:03:48 UTC (rev 128462)
+++ trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html	2012-09-13 15:05:29 UTC (rev 128463)
@@ -48,12 +48,12 @@
     function didReceiveMemorySnapshot(error, memoryBlock)
     {
         InspectorTest.addResult("didReceiveMemorySnapshot");
-        var imagesSize = memoryBlockSize(["ProcessPrivateMemory", "MemoryCache", "MemoryCache.Image"], memoryBlock);
+        var imagesSize = memoryBlockSize(["ProcessPrivateMemory", "Page", "Page.Image"], memoryBlock);
         var jpegDecodedSizeExpected = 20000000;
         if (imagesSize > jpegDecodedSizeExpected)
-            InspectorTest.addResult("PASS: MemoryCache.Image size is OK.");
+            InspectorTest.addResult("PASS: Page.Image size is OK.");
         else
-            InspectorTest.addResult("FAIL: MemoryCache.Image size is too small.");
+            InspectorTest.addResult("FAIL: Page.Image size is too small.");
         InspectorTest.completeTest();
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to