summaryrefslogtreecommitdiffstats
path: root/layout/reftests/webm-video/poster-11.html
blob: c8bc43cd6644917db6f19c5c63c91e4a4f61b51f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE HTML>
<html class="reftest-wait">
<!-- Test: Create video, load. Add poster frame, load again, poster should show. -->
<script>
function runTest() {
  var v = document.createElement('video');
  
  var endTest = function() {
    setTimeout(function(){document.documentElement.className = '';}, 0);
  };  
  
  var addPoster = function() {
    v.removeEventListener('loadeddata', addPoster);
    v.poster = "blue140x100.png";
    v.addEventListener('loadeddata', endTest);
    v.load();
  };
  
  v.addEventListener('loadeddata', addPoster);
  v.id = 'v';
  v.src = "black140x100.webm";
  v.preload = "auto";
  document.body.appendChild(v);
}

</script>
<body style="background:white;" onload="runTest();">
</body>
</html>