Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / perf / large-inlined-script.html
1 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5     testRunner.dumpAsText();
6     testRunner.waitUntilDone();
7 }
8
9 window.addEventListener('load', function() {
10     function finish()
11     {
12         iframe.remove();
13         testRunner.notifyDone();
14     }
15     window._iframeLoaded = finish;
16     var iframe = document.createElement("iframe");
17     document.body.appendChild(iframe);
18     iframe.src = "resources/page-with-large-script.cgi?750000";
19 }, false);
20
21 </script>
22 </head>
23 <body>
24 <p>This tests time complexity of parsing HTML with large inlined script.</p>
25 </body>
26 </html>