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

Side by Side Diff: LayoutTests/http/tests/serviceworker/resources/appcache-ordering.install.html

Issue 671583002: Test: Pages controlled by ServiceWorkers should not participate in AppCaching (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html manifest="appcache-ordering.manifest">
2 <script>
3 var handled = false;
4
5 function installComplete() {
6 if (handled)
7 return;
8 handled = true;
9 window.parent.notify_appcache_installed(true);
10 }
11
12 function installFailed() {
13 if (handled)
14 return;
15 handled = true;
16 window.parent.notify_appcache_installed(false);
17 }
18
19 applicationCache.oncached = installComplete;
20 applicationCache.onnoupdate = installComplete;
21 applicationCache.onupdateready = installFailed;
22 applicationCache.onerror = installFailed;
23 applicationCache.onobsolete = installFailed;
24
25 </script>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698