Bug 1943514 - Close the RC sidebar panel when users opt out of/turn off Review Checke...
[gecko.git] / dom / media / tests / crashtests / 861958.html
blobd6ea7e2e842703061d7a75124cb1164809acf497
1 <!DOCTYPE HTML>
2 <html>
3 <!--
4 https://bugzilla.mozilla.org/show_bug.cgi?id=861958
5 -->
6 <head>
7 <meta charset="utf-8">
8 <title>bug 861958</title>
9 <script type="application/javascript">
10 function start() {
11 var o0 = new window.RTCPeerConnection();
12 var o1 = o0.createDataChannel("foo", {
13 "protocol": "text/char",
14 "preset": false,
15 "stream": 512
16 });
17 o0.close();
19 </script>
20 </head>
22 <body onload="start()">
23 </body>
24 </html>