Bug 1946184 - Fix computing the CSD margin right after calling HideWindowChrome(...
[gecko.git] / dom / media / tests / crashtests / 1281695.html
blob9865c3a5099b3a8c1339a6178cad14adce8c4f60
2 <!DOCTYPE html>
3 <html>
4 <head>
5 <meta charset="UTF-8">
6 <script>
8 function zombieWindow()
10 var frame = document.createElement("iframe");
11 document.body.appendChild(frame);
12 var frameWin = frame.contentWindow;
13 frame.remove();
14 return frameWin;
17 function boom() {
18 zombieWindow().navigator.mozGetUserMedia({ "fake": true, "audio": true }, function(stream) {}, function(e) {});
21 </script>
22 </head>
23 <body onload="boom();"></body>
24 </html>