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

Side by Side Diff: LayoutTests/fast/harness/fastmallocstatistics-object.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <script type="text/javascript"> 5 <script type="text/javascript">
6 shouldBeDefined(window.internals); 6 shouldBeDefined(window.internals);
7 7
8 var stats = window.internals.mallocStatistics(); 8 var stats = window.internals.mallocStatistics();
9 shouldBeDefined(stats); 9 shouldBeDefined(stats);
10 shouldBeGreaterThanOrEqual("stats.reservedVMBytes", "0"); 10 shouldBeGreaterThanOrEqual("stats.reservedVMBytes", "0");
11 shouldBeGreaterThanOrEqual("stats.committedVMBytes", "0"); 11 shouldBeGreaterThanOrEqual("stats.committedVMBytes", "0");
12 shouldBeGreaterThanOrEqual("stats.freeListBytes", "0"); 12 shouldBeGreaterThanOrEqual("stats.freeListBytes", "0");
13 </script> 13 </script>
14 </head> 14 </head>
15 <body> 15 <body>
16 </body> 16 </body>
17 </html> 17 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/gradients/unprefixed-gradient-parsing.html ('k') | LayoutTests/fast/harness/internals-observe-gc.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698