Title: [142113] trunk/LayoutTests
Revision
142113
Author
yu...@chromium.org
Date
2013-02-07 06:56:30 -0800 (Thu, 07 Feb 2013)

Log Message

Web Inspector: reduce number of native memory instrumentation categories
https://bugs.webkit.org/show_bug.cgi?id=109146

Reviewed by Pavel Feldman.

Fix layout tests that started failing after r142081.

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

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (142112 => 142113)


--- trunk/LayoutTests/ChangeLog	2013-02-07 14:47:50 UTC (rev 142112)
+++ trunk/LayoutTests/ChangeLog	2013-02-07 14:56:30 UTC (rev 142113)
@@ -1,3 +1,17 @@
+2013-02-07  Yury Semikhatsky  <yu...@chromium.org>
+
+        Web Inspector: reduce number of native memory instrumentation categories
+        https://bugs.webkit.org/show_bug.cgi?id=109146
+
+        Reviewed by Pavel Feldman.
+
+        Fix layout tests that started failing after r142081.
+
+        * inspector/profiler/memory-instrumentation-cached-images-expected.txt:
+        * inspector/profiler/memory-instrumentation-cached-images.html:
+        * inspector/profiler/memory-instrumentation-canvas-expected.txt:
+        * inspector/profiler/memory-instrumentation-canvas.html:
+
 2013-02-07  Keishi Hattori  <kei...@webkit.org>
 
         REGRESSION (r140778): Calendar Picker doesn't open when the element has the required attribute

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


--- trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images-expected.txt	2013-02-07 14:47:50 UTC (rev 142112)
+++ trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images-expected.txt	2013-02-07 14:56:30 UTC (rev 142113)
@@ -1,5 +1,5 @@
 This test checks that CachedImages size reported by the memory agent includes images decoded size. Bug 93366
 
 
-PASS: block size for path = [ProcessPrivateMemory, Page, Image] is OK.
+PASS: block size for path = [ProcessPrivateMemory, Image] is OK.
 

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


--- trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html	2013-02-07 14:47:50 UTC (rev 142112)
+++ trunk/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html	2013-02-07 14:56:30 UTC (rev 142113)
@@ -14,7 +14,7 @@
 function test()
 {
     var jpegDecodedSizeExpected = 20000000;
-    InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Page", "Image"], jpegDecodedSizeExpected);
+    InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Image"], jpegDecodedSizeExpected);
 }
 
 </script>

Modified: trunk/LayoutTests/inspector/profiler/memory-instrumentation-canvas-expected.txt (142112 => 142113)


--- trunk/LayoutTests/inspector/profiler/memory-instrumentation-canvas-expected.txt	2013-02-07 14:47:50 UTC (rev 142112)
+++ trunk/LayoutTests/inspector/profiler/memory-instrumentation-canvas-expected.txt	2013-02-07 14:56:30 UTC (rev 142113)
@@ -1,4 +1,4 @@
 This test checks that page's image size reported by the memory agent includes size of canvas internal image buffer.
 
- PASS: block size for path = [ProcessPrivateMemory, Page, Image] is OK.
+ PASS: block size for path = [ProcessPrivateMemory, Image] is OK.
 

Modified: trunk/LayoutTests/inspector/profiler/memory-instrumentation-canvas.html (142112 => 142113)


--- trunk/LayoutTests/inspector/profiler/memory-instrumentation-canvas.html	2013-02-07 14:47:50 UTC (rev 142112)
+++ trunk/LayoutTests/inspector/profiler/memory-instrumentation-canvas.html	2013-02-07 14:56:30 UTC (rev 142113)
@@ -17,7 +17,7 @@
 function test()
 {
     var canvasImageBufferExpected = 4000000;
-    InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Page", "Image"], canvasImageBufferExpected);
+    InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Image"], canvasImageBufferExpected);
 }
 
 </script>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to