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

Side by Side Diff: LayoutTests/http/tests/perf/large-inlined-script.html

Issue 666843006: Tune performance test parameters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | « LayoutTests/TestExpectations ('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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 if (window.testRunner) { 4 if (window.testRunner) {
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 testRunner.waitUntilDone(); 6 testRunner.waitUntilDone();
7 } 7 }
8 8
9 window.addEventListener('load', function() { 9 window.addEventListener('load', function() {
10 function finish() 10 function finish()
11 { 11 {
12 iframe.remove(); 12 iframe.remove();
13 testRunner.notifyDone(); 13 testRunner.notifyDone();
14 } 14 }
15 window._iframeLoaded = finish; 15 window._iframeLoaded = finish;
16 var iframe = document.createElement("iframe"); 16 var iframe = document.createElement("iframe");
17 document.body.appendChild(iframe); 17 document.body.appendChild(iframe);
18 iframe.src = "resources/page-with-large-script.cgi?1000000"; 18 iframe.src = "resources/page-with-large-script.cgi?750000";
19 }, false); 19 }, false);
20 20
21 </script> 21 </script>
22 </head> 22 </head>
23 <body> 23 <body>
24 <p>This tests time complexity of parsing HTML with large inlined script.</p> 24 <p>This tests time complexity of parsing HTML with large inlined script.</p>
25 </body> 25 </body>
26 </html> 26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698