+2013-02-07 Sheriff Bot <webkit.review.bot@gmail.com>
+
+ Unreviewed, rolling out r142113.
+ http://trac.webkit.org/changeset/142113
+ https://bugs.webkit.org/show_bug.cgi?id=109244
+
+ tests started failing after r142081 was rolled out in r142166
+ (Requested by falken on #webkit).
+
+ * 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 Elliott Sprehn <esprehn@chromium.org>
getComputedStyle() doesn't report intermediate values during a transition of a pseudo element
This test checks that CachedImages size reported by the memory agent includes images decoded size. Bug 93366
-PASS: block size for path = [ProcessPrivateMemory, Image] is OK.
+PASS: block size for path = [ProcessPrivateMemory, Page, Image] is OK.
function test()
{
var jpegDecodedSizeExpected = 20000000;
- InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Image"], jpegDecodedSizeExpected);
+ InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Page", "Image"], jpegDecodedSizeExpected);
}
</script>
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, Image] is OK.
+ PASS: block size for path = [ProcessPrivateMemory, Page, Image] is OK.
function test()
{
var canvasImageBufferExpected = 4000000;
- InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Image"], canvasImageBufferExpected);
+ InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Page", "Image"], canvasImageBufferExpected);
}
</script>