OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <body> | |
3 <script> | |
4 var iframe = document.createElement('iframe'); | |
5 iframe.onload = (_ => { | |
nhiroki
2016/08/01 04:32:45
ditto (origin check)
horo
2016/08/01 07:40:56
Done.
| |
6 iframe.contentWindow.navigator.serviceWorker.ready | |
shimazu
2016/08/01 05:06:20
+2 indent?
horo
2016/08/01 07:40:56
Done.
| |
7 .then(reg => reg.update() ) | |
shimazu
2016/08/01 05:06:20
Extra space before the last ')'
horo
2016/08/01 07:40:56
Done.
| |
8 .then(_ => { document.title = "PASS"; }) | |
9 }); | |
10 iframe.src = location.search.substring(1); | |
11 document.body.appendChild(iframe); | |
12 </script> | |
13 </body> | |
OLD | NEW |