OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../resources/testharness.js"></script> | 4 <script src="../resources/testharness.js"></script> |
5 <script src="../resources/testharnessreport.js"></script> | 5 <script src="../resources/testharnessreport.js"></script> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <p> Verify that a timeout ProgressEvent is dispatched and have the expected valu
es.</p> | 8 <p> Verify that a timeout ProgressEvent is dispatched and have the expected valu
es.</p> |
9 <div id="log"></div> | 9 <div id="log"></div> |
10 <script type="text/javascript"> | 10 <script type="text/javascript"> |
(...skipping 19 matching lines...) Expand all Loading... |
30 testOnTimeoutEvent.done(); | 30 testOnTimeoutEvent.done(); |
31 } | 31 } |
32 | 32 |
33 var testOnTimeoutEvent = async_test("Check that 'timeout' events are delivered a
nd have expected values."); | 33 var testOnTimeoutEvent = async_test("Check that 'timeout' events are delivered a
nd have expected values."); |
34 testOnTimeoutEvent.step(function () { | 34 testOnTimeoutEvent.step(function () { |
35 var xhr = new XMLHttpRequest(); | 35 var xhr = new XMLHttpRequest(); |
36 xhr.ontimeout = testOnTimeoutEvent.step_func(timeoutHandler); | 36 xhr.ontimeout = testOnTimeoutEvent.step_func(timeoutHandler); |
37 xhr.onabort = testOnTimeoutEvent.step_func(unexpectedProgressEvent); | 37 xhr.onabort = testOnTimeoutEvent.step_func(unexpectedProgressEvent); |
38 xhr.onerror = testOnTimeoutEvent.step_func(unexpectedProgressEvent); | 38 xhr.onerror = testOnTimeoutEvent.step_func(unexpectedProgressEvent); |
39 xhr.onload = testOnTimeoutEvent.step_func(unexpectedProgressEvent); | 39 xhr.onload = testOnTimeoutEvent.step_func(unexpectedProgressEvent); |
40 xhr.timeout = 30; | 40 xhr.timeout = 1000; |
41 xhr.open("GET", "/resources/load-and-stall.php?name=../resources/test.mp4&st
allAt=100&stallFor=10000&mimeType=video/mp4", true); | 41 xhr.open("GET", "/resources/load-and-stall.php?name=../resources/test.mp4&st
allAt=0&stallFor=1000&mimeType=video/mp4", true); |
42 xhr.send(); | 42 xhr.send(); |
| 43 // Defer overriding timeout |
| 44 setTimeout(function() { |
| 45 xhr.timeout = 400; |
| 46 }, 200); |
43 }); | 47 }); |
44 </script> | 48 </script> |
45 </body> | 49 </body> |
46 </html> | 50 </html> |
OLD | NEW |