Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: LayoutTests/inspector/profiler/memory-instrumentation-cached-images.html

Issue 13973026: remove memoryinstrumentation Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove the rest part of MemoryInstrumentation Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="memory-instrumentation-test.js"></script>
5 <script>
6
7 function displayAndRunTest()
8 {
9 if (window.testRunner)
10 testRunner.display();
11 runTest();
12 }
13
14 function test()
15 {
16 var jpegDecodedSizeExpected = 20000000;
17 InspectorTest.validateMemoryBlockSize(["ProcessPrivateMemory", "Image"], jpe gDecodedSizeExpected);
18 }
19
20 </script>
21 </head>
22
23 <body>
24 <p>
25 This test checks that CachedImages size reported by the memory agent includes im ages decoded size.
26 <a href="https://bugs.webkit.org/show_bug.cgi?id=93366">Bug 93366</a>
27 </p>
28 <img src="resources/image.jpeg" width="100" height="60" onload="displayAndRunTes t()"/>
29 </body>
30 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/inspector/profiler/memory-instrumentation-cached-images-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698