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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-html-imports-iframe.html

Issue 2858093002: Upstream service worker `fetch` test to WPT (Closed)
Patch Set: Incorporate review feedback Created 3 years, 7 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/serviceworker/resources/fetch-request-html-imports-iframe.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-html-imports-iframe.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-html-imports-iframe.html
deleted file mode 100644
index e096c149909ad8b3292a73acc2b799b6fb913134..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/fetch-request-html-imports-iframe.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<script src="../../resources/get-host-info.js"></script>
-<script type="text/javascript">
- var hostInfo = get_host_info();
- var makeLink = function(id, url) {
- var link = document.createElement('link');
- link.rel = 'import'
- link.id = id;
- link.href = url;
- document.documentElement.appendChild(link);
- };
- makeLink('same', hostInfo.HTTP_ORIGIN + '/dummy-dir/same.html');
- makeLink('other', hostInfo.HTTP_REMOTE_ORIGIN + '/dummy-dir/other.html');
-</script>

Powered by Google App Engine
This is Rietveld 408576698