Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / HTMLScriptElement / async-inline-script.html
blobd6e28881af0917ec654f10abcd28051b5fc11a2c
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 </head>
6 <body>
7 Checks that inline scripts are not async.
8 <div id="console"></div>
9 <script async>
10 debug(1);
11 </script>
12 <script>
13 debug(2);
14 </script>
15 </body>
16 </html>