summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/1748272.html
blob: 53953e7c0efc67564389fbaf70add9f565bb8eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<head>
  <script>
    window.addEventListener("load", () => {
      const audio = new Audio();
      const context = new AudioContext({ "sampleRate": 15772.7 })
      context.createMediaElementSource(audio);
    });
  </script>
</head>
</html>