OLD | NEW |
1 <video controls></video> | 1 <video controls></video> |
2 <p>Test that pause() after changing display to "none" doesn't cause a crash.</p> | 2 <p>Test that pause() after changing display to "none" doesn't cause a crash.</p> |
3 <script src="media-file.js"></script> | 3 <script src="media-file.js"></script> |
| 4 <!-- TODO(philipj): Convert test to testharness.js. crbug.com/588956 |
| 5 (Please avoid writing new tests using video-test.js) --> |
4 <script src="video-test.js"></script> | 6 <script src="video-test.js"></script> |
5 <script> | 7 <script> |
6 video.src = findMediaFile("video", "content/test"); | 8 video.src = findMediaFile("video", "content/test"); |
7 video.play(); | 9 video.play(); |
8 video.style.display = "none"; | 10 video.style.display = "none"; |
9 video.pause(); | 11 video.pause(); |
10 endTest(); | 12 endTest(); |
11 </script> | 13 </script> |
OLD | NEW |