| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
| 5 <script src="../../js-test-resources/js-test-pre.js"></script> | 5 <script src="../../js-test-resources/js-test-pre.js"></script> |
| 6 </head> | 6 </head> |
| 7 <body onload="test()"> | 7 <body onload="test()"> |
| 8 This tests for proper execution order of scripts with the async attribute <a hre
f="https://bugs.webkit.org/show_bug.cgi?id=20710">https://bugs.webkit.org/show_b
ug.cgi?id=20710</a>.<hr> | 8 This tests for proper execution order of scripts with the async attribute <a hre
f="https://bugs.webkit.org/show_bug.cgi?id=20710">https://bugs.webkit.org/show_b
ug.cgi?id=20710</a>.<hr> |
| 9 <div id="console"></div> | 9 <div id="console"></div> |
| 10 <script type="text/javascript"> | 10 <script type="text/javascript"> |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 finishJSTest(); | 34 finishJSTest(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 </script> | 37 </script> |
| 38 <script src="http://127.0.0.1:8000/misc/resources/slow-async-script.cgi" async="
ASYNC"></script> | 38 <script src="http://127.0.0.1:8000/misc/resources/slow-async-script.cgi" async="
ASYNC"></script> |
| 39 <script src="http://127.0.0.1:8000/misc/resources/async-script.js" async="ASYNC"
></script> | 39 <script src="http://127.0.0.1:8000/misc/resources/async-script.js" async="ASYNC"
></script> |
| 40 <script src="http://127.0.0.1:8000/misc/resources/external-script.js"></script> | 40 <script src="http://127.0.0.1:8000/misc/resources/external-script.js"></script> |
| 41 <script> | 41 <script> |
| 42 debug("inline"); | 42 debug("inline"); |
| 43 </script> | 43 </script> |
| 44 <script src="../../js-test-resources/js-test-post.js"></script> | |
| 45 </body> | 44 </body> |
| 46 </html> | 45 </html> |
| 47 | 46 |
| 48 | 47 |
| OLD | NEW |