| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="/js-test-resources/js-test.js"></script> | 4 <script src="/js-test-resources/js-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 description("Testing navigator.sendBeacon() within same origin."); | 6 description("Testing navigator.sendBeacon() within same origin."); |
| 7 | 7 |
| 8 window.jsTestIsAsync = true; | 8 window.jsTestIsAsync = true; |
| 9 | 9 |
| 10 var binary_array = new Uint32Array(10); | 10 var binary_array = new Uint32Array(10); |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 testRunner.waitUntilDone(); | 52 testRunner.waitUntilDone(); |
| 53 testRunner.dumpPingLoaderCallbacks(); | 53 testRunner.dumpPingLoaderCallbacks(); |
| 54 } | 54 } |
| 55 testOne(); | 55 testOne(); |
| 56 } | 56 } |
| 57 </script> | 57 </script> |
| 58 </head> | 58 </head> |
| 59 <body onload="test();"> | 59 <body onload="test();"> |
| 60 </body> | 60 </body> |
| 61 </html> | 61 </html> |
| OLD | NEW |