summaryrefslogtreecommitdiffstats
path: root/webkit/data/media/bear.html
blob: 9cc3682bd1b70ccf6da5a53f09062a513a1314d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<body>
<video autoplay="true" id="v"></video>
<script>
  layoutTestController.waitUntilDone();

  var v = document.getElementById('v');
  v.addEventListener('canplaythrough', function() {
    window.setTimeout("layoutTestController.notifyDone();", 1000);
  }, false);
  v.src = 'bear_silent.ogv';
  v.load();
</script>
</body>
</html>