Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/loading/script-priorities.html

Issue 2211283004: Drop test-only WebFrameClient params/functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698