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

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

Issue 500363002: Test time complexity for page with large inlined script. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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/SlowTests ('k') | LayoutTests/http/tests/perf/large-inlined-script-expected.txt » ('j') | 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 src="/js-test-resources/magnitude-perf.js"></script>
4 <script>
5 function setupFunction(magnitude) { }
6
7 function test(magnitude, callback)
8 {
9 function finish()
10 {
11 iframe.remove();
12 callback();
13 }
14 window._iframeLoaded = finish;
15 var iframe = document.createElement("iframe");
16 document.body.appendChild(iframe);
17 iframe.src = "resources/page-with-large-script.cgi?" + magnitude;
18 }
19
20 Magnitude.description("This tests time complexity of parsing HTML with large inl ined script.");
21 Magnitude.initialExponent = 15;
22 Magnitude.numPoints = 4;
23 Magnitude.tolerance = 0.25;
24 Magnitude.numTrials = 5;
25 Magnitude.successThreshold = 0.4; // 2 out of 5
26 Magnitude.runAsync(setupFunction, test, Magnitude.LINEAR);
27 </script>
28 </head>
29 <body>
30 </body>
31 </html>
OLDNEW
« no previous file with comments | « LayoutTests/SlowTests ('k') | LayoutTests/http/tests/perf/large-inlined-script-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698