summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/crashtests/791330.html
blob: fea2059a29de7290b7e994f13ccab16e93dff1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE HTML>
<html class="reftest-wait">
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=791330
-->
<head>
  <meta charset="utf-8">
  <title>PeerConnection test - operate on closed connection</title>
  <script type="application/javascript">
    function finish() {
      document.documentElement.removeAttribute("class");
    }

    function runTest() {
      var pc = new RTCPeerConnection();
      pc.close();

      navigator.mozGetUserMedia({audio: true, fake: true}, function (stream) {
        try {
          pc.addStream(stream);
          pc.createOffer(function (offer) {});
        }
        finally {
          stream.getTracks().forEach(t => t.stop());

          finish();
        }
      }, function () {});
    }
  </script>
</head>

<body onload="setTimeout(runTest, 100)">
</body>
</html>