poster-7.html (463B)
1 <!DOCTYPE HTML> 2 <html class="reftest-wait"> 3 <body style="background:white;" 4 onload="setTimeout(function(){document.documentElement.className = '';}, 0);"> 5 <!-- Test that poster frame changes when you change the poster attribute. --> 6 <video src="black140x100.webm" 7 preload="none" 8 id="v" 9 poster="blue250x200.png"></video> 10 <script type="text/javascript"> 11 document.getElementById('v').poster = 'red140x100.png'; 12 </script> 13 </body> 14 </html>