Index: LayoutTests/inspector/profiler/memory-instrumentation-canvas.html |
diff --git a/LayoutTests/inspector/profiler/memory-instrumentation-canvas.html b/LayoutTests/inspector/profiler/memory-instrumentation-canvas.html |
deleted file mode 100644 |
index 5b0c765a2048044d8a33b071f56a6e681c57a286..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/profiler/memory-instrumentation-canvas.html |
+++ /dev/null |
@@ -1,32 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../http/tests/inspector/inspector-test.js"></script> |
-<script src="memory-instrumentation-test.js"></script> |
-<script> |
- |
-function displayAndRunTest() |
-{ |
- var canvasContext = document.getElementById("canvas").getContext("2d"); |
- canvasContext.fillRect(0, 0, 1024, 1024); |
- |
- if (window.testRunner) |
- testRunner.display(); |
- runTest(); |
-} |
- |
-function test() |
-{ |
- var canvasImageBufferExpected = 4000000; |
- InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Image"], canvasImageBufferExpected); |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="displayAndRunTest()"> |
-<p> |
-This test checks that page's image size reported by the memory agent includes size of canvas internal image buffer. |
-</p> |
-<canvas id="canvas" width="1024" height="1024"></canvas> |
-</body> |
-</html> |