summaryrefslogtreecommitdiffstats
path: root/layout/reftests/webm-video/poster-10.html
blob: fc9571aacc1e407ed304dbfff037019b5b937d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML>
<html class="reftest-wait">
<!-- Test: Create video, add poster, load. Should display poster. -->
<script>
function runTest() {
  var v = document.createElement('video');
  v.addEventListener('loadeddata', function(){setTimeout(function(){document.documentElement.className = '';}, 0);});
  v.id = 'v';
  v.src = "black140x100.webm";
  v.poster = "blue250x200.png";
  v.preload = "auto";
  document.body.appendChild(v);
}

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