diff options
Diffstat (limited to 'third_party/WebKit/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/third_party/WebKit/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html b/third_party/WebKit/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html deleted file mode 100644 index ffddea7..0000000 --- a/third_party/WebKit/LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html +++ /dev/null @@ -1,30 +0,0 @@ -<html> -<head> -<script src="../../http/tests/inspector/inspector-test.js"></script> -<script src="memory-instrumentation-test.js"></script> -<script> - -function displayAndRunTest() -{ - if (window.testRunner) - testRunner.display(); - runTest(); -} - -function test() -{ - var jpegDecodedSizeExpected = 20000000; - InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Image"], jpegDecodedSizeExpected); -} - -</script> -</head> - -<body> -<p> -This test checks that CachedImages size reported by the memory agent includes images decoded size. -<a href="https://bugs.webkit.org/show_bug.cgi?id=93366">Bug 93366</a> -</p> -<img src="resources/image.jpeg" width="100" height="60" onload="displayAndRunTest()"/> -</body> -</html> |