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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/unregister-controller-page.html

Issue 2904123002: Upstream service worker "unregister" tests to WPT (Closed)
Patch Set: 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/unregister-controller-page.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/unregister-controller-page.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/unregister-controller-page.html
deleted file mode 100644
index 18a95ee892b1c9ee7ca597cb2655e6c4504a7912..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/unregister-controller-page.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<script>
-function fetch_url(url) {
- return new Promise(function(resolve, reject) {
- var request = new XMLHttpRequest();
- request.addEventListener('load', function(event) {
- if (request.status == 200)
- resolve(request.response);
- else
- reject(Error(request.statusText));
- });
- request.open('GET', url);
- request.send();
- });
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698