| Index: chrome/test/data/banners/cancel_test_page.html
|
| diff --git a/chrome/test/data/banners/cancel_test_page.html b/chrome/test/data/banners/cancel_test_page.html
|
| index 5f9d9af49bbd28aa12af8389b97c17dcba5464d5..fb1c77a1cc00e5c5c4512788346602b73a0417a2 100644
|
| --- a/chrome/test/data/banners/cancel_test_page.html
|
| +++ b/chrome/test/data/banners/cancel_test_page.html
|
| @@ -1,9 +1,13 @@
|
| <html>
|
| <head>
|
| <title>Web app banner test page</title>
|
| - <link rel="manifest" href="manifest.json" />
|
| <script src="main.js"></script>
|
| <script>
|
| + // If a "manifest=/path/to/manifest.json" query argument is provided to
|
| + // the URL accessing this page, that path is injected as the manifest tag.
|
| + // Otherwise, "manifest.json" is used as the manifest tag.
|
| + addManifestLinkTag();
|
| +
|
| window.addEventListener('beforeinstallprompt', function(e) {
|
| console.log('Preventing banner from appearing');
|
| e.preventDefault();
|
|
|