blob: e1d8ba211a615c50b843c221f23433d3af91f4bf (
plain)
1
2
3
4
5
6
7
8
9
10
|
<video autoplay controls></video>
<script src=media-file.js></script>
<script src=video-test.js></script>
<script>
testExpected("video.autoplay", true);
testExpected("video.getAttribute('autoplay')", null, '!=');
waitForEvent('play', function () { testExpected("video.paused", false); endTest(); } );
video.src = findMediaFile("video", "content/test");
</script>
|