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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/fetch/window/response-stream-construction.html

Issue 2675163003: Merge response-stream-construction.js to response.js (Closed)
Patch Set: Created 3 years, 10 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/fetch/window/response-stream-construction.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/fetch/window/response-stream-construction.html b/third_party/WebKit/LayoutTests/http/tests/fetch/window/response-stream-construction.html
deleted file mode 100644
index 31e3713e6851636b24a6b581ee8ae1fafc4cce59..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/fetch/window/response-stream-construction.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/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>
-<script src = "/streams/resources/rs-utils.js"></script>
-</head>
-<body>
-<script>
-function start(t) {
- var script = document.createElement('script');
- script.src = '../script-tests/response-stream-construction.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