blob: 75e76650bab171b0959092f756887c66bb85525e [file] [log] [blame]
<video controls></video>
<div>Test that setting src attribute triggers load</div>
<script src=video-test.js></script>
<script>
video.setAttribute('src', 'content/test.mp4')
waitForEvent('loadstart', function () {
testExpected("relativeURL(video.currentSrc)", "content/test.mp4");
endTest();
} );
video.setAttribute('src', 'content/test.mp4')
</script>