2 <title>Tests setting the poster attribute after a video is playing.
</title>
5 testRunner
.waitUntilDone();
8 var video
= document
.querySelector('video');
9 video
.addEventListener("playing", function () {
10 video
.poster
= "content/abe.png";
12 video
.addEventListener("timeupdate", function () {
13 if (video
.currentTime
> 1 && window
.testRunner
)
14 testRunner
.notifyDone();
20 window
.addEventListener('load', startTest
, false);
22 <video src=
"resources/test-positive-start-time.webm"></video>