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