OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src=media-file.js></script> | 2 <title>Test that a media element with "preload=none" doesn't fire a "stalled" ev
ent.</title> |
3 <!-- TODO(foolip): Convert test to testharness.js. crbug.com/588956 | 3 <script src="../resources/testharness.js"></script> |
4 (Please avoid writing new tests using video-test.js) --> | 4 <script src="../resources/testharnessreport.js"></script> |
5 <script src=video-test.js></script> | 5 <script src="media-file.js"></script> |
| 6 <video preload="none"></video> |
6 <script> | 7 <script> |
7 function runTest() | 8 async_test(function(t) { |
8 { | 9 var video = document.querySelector("video"); |
9 findMediaElement(); | 10 video.onsuspend = t.step_func_done(); |
10 | 11 video.onstalled = t.unreached_func(); |
11 waitForEventAndEnd("suspend"); | 12 video.src = findMediaFile("video", "content/test"); |
12 waitForEventAndFail("stalled"); | 13 }); |
13 consoleWrite(""); | 14 </script> |
14 | |
15 video.src = findMediaFile("video", "content/test"); | |
16 } | |
17 </script> | |
18 <body onload="runTest()"> | |
19 <p>Test to see if a media element with preload=none dispatches a 'stalled' eve
nt.</p> | |
20 <video preload=none></video> | |
21 </body> | |
OLD | NEW |