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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/appcache-ordering.install.html

Issue 2879643002: Remove duplicate service workers "appcache" test (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/appcache-ordering.install.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/appcache-ordering.install.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/appcache-ordering.install.html
deleted file mode 100644
index 428ad92c782eaccb42b14b4ea9a78a4dba500073..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/appcache-ordering.install.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<html manifest="appcache-ordering.manifest">
-<script>
-var handled = false;
-
-function installComplete() {
- if (handled)
- return;
- handled = true;
- window.parent.notify_appcache_installed(true);
-}
-
-function installFailed() {
- if (handled)
- return;
- handled = true;
- window.parent.notify_appcache_installed(false);
-}
-
-applicationCache.oncached = installComplete;
-applicationCache.onnoupdate = installComplete;
-applicationCache.onupdateready = installFailed;
-applicationCache.onerror = installFailed;
-applicationCache.onobsolete = installFailed;
-
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698