OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
5 function log(message) | 5 function log(message) |
6 { | 6 { |
7 document.getElementById("result").innerHTML += message + "<br>"; | 7 document.getElementById("result").innerHTML += message + "<br>"; |
8 } | 8 } |
9 | 9 |
10 function runTests() | 10 function runTests() |
(...skipping 17 matching lines...) Expand all Loading... |
28 </head> | 28 </head> |
29 <body> | 29 <body> |
30 <p>Sending notifications with permission...</p> | 30 <p>Sending notifications with permission...</p> |
31 <div id="result"></div> | 31 <div id="result"></div> |
32 | 32 |
33 <script type="text/javascript"> | 33 <script type="text/javascript"> |
34 runTests(); | 34 runTests(); |
35 </script> | 35 </script> |
36 </body> | 36 </body> |
37 </html> | 37 </html> |
OLD | NEW |