[refactor] More post-NSS WebCrypto cleanups (utility functions).
[chromium-blink-merge.git] / content / test / data / manifest / dynamic-manifest.html
blobd1347d4322c18679c577e361d2ee9543b36d61ac
1 <!DOCTYPE html>
2 <html>
3 <head>
4 </head>
5 <body>
6 </body>
7 <script>
8 function setManifestTo(url) {
9 // Clear everything.
10 document.head.innerHTML = '';
12 var link = document.createElement('link');
13 link.rel = 'manifest';
14 link.href = url;
15 document.head.appendChild(link);
17 </script>
18 </html>