Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / loading / script-priorities.html
blob0e6fbcd8108f989d2fd8093c009567079be10228
1 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpResourceRequestPriorities();
6 testRunner.dumpAsText();
8 </script>
9 <script src="/js-test-resources/js-test.js"></script>
10 <script src="resources/defer.js" defer></script>
11 <script src="resources/async.js" async></script>
12 <script src="resources/head.js"></script>
13 </head>
14 <body>
15 <script>
16 document.write('<script src="resources/document-write.js"><\/script>');
17 </script>
18 <script>
19 var script = document.createElement('script');
20 script.src = "resources/injected.js";
21 document.getElementsByTagName('head')[0].appendChild(script);
22 </script>
23 <script>
24 var asyncScript = document.createElement('script');
25 asyncScript.async = true;
26 asyncScript.src = "resources/injected-async.js";
27 document.getElementsByTagName('head')[0].appendChild(asyncScript);
28 </script>
29 <script src="resources/body.js"></script>
30 </body>
31 </html>