summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/1835164.html
blob: 702e082954effb550237e988215c998e20b18c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html class="reftest-wait">
<audio id=a src=1835164.opus controls autoplay></audio>
<script>
a.onloadedmetadata = function() {
  a.currentTime = 1e40;
  a.play();
}
a.onplaying = function() {
  document.documentElement.removeAttribute("class");
}
</script>
</html>