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

Unified Diff: LayoutTests/http/tests/fetch/window/fetch-body-mixin.html

Issue 1267263003: Rename fetch layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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: LayoutTests/http/tests/fetch/window/fetch-body-mixin.html
diff --git a/LayoutTests/http/tests/fetch/window/fetch-body-mixin.html b/LayoutTests/http/tests/fetch/window/fetch-body-mixin.html
deleted file mode 100644
index e05b9f4647e834f74699f986d9d3825cacbaa351..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/fetch/window/fetch-body-mixin.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<!doctype html>
-<head>
-<meta name="timeout" content="long"></meta>
-<script src = "/resources/testharness.js"></script>
-<script src = "/resources/testharness-helpers.js"></script>
-<script src = "/resources/testharnessreport.js"></script>
-<script src = "/serviceworker/resources/test-helpers.js"></script>
-<script src = "../resources/fetch-test-options.js"></script>
-<script src = "../resources/fetch-test-helpers.js"></script>
-</head>
-<body>
-<script>
-function start(t) {
- var script = document.createElement('script');
- script.src = '../script-tests/fetch-body-mixin.js?';
- script.addEventListener(
- 'error',
- function() { unreached_rejection(t); });
- script.addEventListener(
- 'load',
- function() { t.done(); });
- document.body.appendChild(script);
-}
-function init() {
- return Promise.resolve();
-}
-</script>
-<script src = "../resources/init.js"></script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698