OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML> |
| 2 <html> |
| 3 <head> |
| 4 <script src="/js-test-resources/js-test.js"></script> |
| 5 <script> |
| 6 description("Verifying that navigator.sendBeacon() to non-CORS cross-origin redi
rect fails."); |
| 7 |
| 8 window.jsTestIsAsync = true; |
| 9 |
| 10 function test() { |
| 11 if (window.testRunner) { |
| 12 testRunner.dumpAsText(); |
| 13 testRunner.dumpPingLoaderCallbacks(); |
| 14 } |
| 15 |
| 16 shouldBeTrue('navigator.sendBeacon("http://127.0.0.1:8080/navigation/resourc
es/redirection-response.php?status=302&target=non-existent.php", "CrossOrigin");
'); |
| 17 // Wait a while for the redirect response handling to happen before finishin
g up. |
| 18 setTimeout(finishJSTest, 200); |
| 19 } |
| 20 </script> |
| 21 </head> |
| 22 <body onload="test();"> |
| 23 </body> |
| 24 </html> |
OLD | NEW |