OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <body> | |
3 <script> | |
4 var iframe = document.createElement("iframe"); | |
5 document.body.appendChild(iframe); | |
6 | |
7 var s = iframe.contentWindow.document.createElement("script"); | |
8 s.src = "http://127.0.0.1:8000/resources/slow-script.pl?delay=10000"; | |
9 s.async = false; | |
10 iframe.contentWindow.document.body.appendChild(s); | |
11 | |
12 if (window.testRunner) | |
13 testRunner.dumpAsText(); | |
14 </script> | |
15 <p>There should be no leaks when run with --enable-leak-detection | |
16 </body> | |
17 </html> | |
OLD | NEW |