Add new access object callback
[framework/web/webkit-efl.git] / LayoutTests / media / video-autoplay.html
1 <video autoplay controls></video>
2 <script src=media-file.js></script>
3 <script src=video-test.js></script>
4
5 <script>
6     testExpected("video.autoplay", true);
7     testExpected("video.getAttribute('autoplay')", null, '!=');
8     waitForEvent('play', function () { testExpected("video.paused", false); endTest(); } );
9     video.src = findMediaFile("video", "content/test");
10 </script>