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

Unified Diff: chrome/test/data/banners/lazy_service_worker_test_page.html

Issue 2942513002: Allow banners to trigger on sites which don't register a service worker onload. (Closed)
Patch Set: Fix crashing Android test. Comments Created 3 years, 6 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: chrome/test/data/banners/lazy_service_worker_test_page.html
diff --git a/chrome/test/data/banners/lazy_service_worker_test_page.html b/chrome/test/data/banners/lazy_service_worker_test_page.html
new file mode 100644
index 0000000000000000000000000000000000000000..1e1b284720a34776e903adc63e505d6374f82e8e
--- /dev/null
+++ b/chrome/test/data/banners/lazy_service_worker_test_page.html
@@ -0,0 +1,10 @@
+<html>
+ <head>
+ <link rel="manifest" href="manifest.json">
+ <title>Web app banner test page</title>
+ <script src="main.js"></script>
+ </head>
+ <body onload="setTimeout(initialize, getSwDelay())">
+ Do-nothing page with a late-loaded service worker.
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698