summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/1830206.html
blob: 69f72176fdf5b275d5367bece44e77a8fc3007bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<html class="reftest-wait">
<video id='a'>
  <source src='1830206.mp4'>
</video>
<script>
  function done() {
    document.documentElement.removeAttribute("class");
  }
  a.addEventListener('error', done, true)
  a.addEventListener('ended', done, true)
  a.play();
</script>