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

Side by Side Diff: chrome/test/data/devtools/heap_profiler.html

Issue 2846019: Add test for Heap profiler. (Closed)
Patch Set: Created 10 years, 6 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
« no previous file with comments | « chrome/browser/debugger/devtools_sanity_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 function A(x) {
5 this.x = x;
6 }
7
8 function B(x, y) {
9 this.x = x;
10 this.y = y;
11 }
12
13 function instantiate() {
14 a = new A("hello");
15 b = new B(a, "world!");
16 }
17
18 function load() {
19 // Let the page do initial rendering, then go.
20 setTimeout(instantiate, 200);
21 }
22 </script>
23 </head>
24 <body onload="load()">
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « chrome/browser/debugger/devtools_sanity_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698