summaryrefslogtreecommitdiffstats
path: root/dom/media/test/crashtests/1384248.html
blob: 5d9c60edda64ea9969285ae80cb86562404a9a15 (plain)
1
2
3
4
5
6
7
8
9
10
<html>
  <head>
    <script>
      try { o1 = document.createElement('audio') } catch(e) { }
      try { o2 = document.implementation.createDocument('', '', null).adoptNode(o1); } catch(e) { };
      try { o3 = new AudioContext('alarm') } catch(e) { }
      try { o3.createMediaElementSource(o1) } catch(e) { }
    </script>
  </head>
</html>