| Index: third_party/WebKit/LayoutTests/http/tests/loading/script-priorities.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/loading/script-priorities.html b/third_party/WebKit/LayoutTests/http/tests/loading/script-priorities.html
|
| deleted file mode 100644
|
| index 0e6fbcd8108f989d2fd8093c009567079be10228..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/loading/script-priorities.html
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <script>
|
| - if (window.testRunner) {
|
| - testRunner.dumpResourceRequestPriorities();
|
| - testRunner.dumpAsText();
|
| - }
|
| - </script>
|
| - <script src="/js-test-resources/js-test.js"></script>
|
| - <script src="resources/defer.js" defer></script>
|
| - <script src="resources/async.js" async></script>
|
| - <script src="resources/head.js"></script>
|
| - </head>
|
| - <body>
|
| - <script>
|
| - document.write('<script src="resources/document-write.js"><\/script>');
|
| - </script>
|
| - <script>
|
| - var script = document.createElement('script');
|
| - script.src = "resources/injected.js";
|
| - document.getElementsByTagName('head')[0].appendChild(script);
|
| - </script>
|
| - <script>
|
| - var asyncScript = document.createElement('script');
|
| - asyncScript.async = true;
|
| - asyncScript.src = "resources/injected-async.js";
|
| - document.getElementsByTagName('head')[0].appendChild(asyncScript);
|
| - </script>
|
| - <script src="resources/body.js"></script>
|
| - </body>
|
| -</html>
|
|
|