blob: d0523c9bd140420910bfe609fcf9454b1013aa46 [file] [log] [blame]
<video controls></video>
<script src=video-test.js></script>
<script>
testExpected("video.autoplay", false);
video.autoplay = true;
testExpected("video.autoplay", true);
testExpected("video.getAttribute('autoplay')", null, "!=");
waitForEvent('play', function () {
testExpected("video.paused", false);
endTest();
} );
video.src = "content/test.mp4";
</script>