Bug 1943514 - Close the RC sidebar panel when users opt out of/turn off Review Checke...
[gecko.git] / dom / media / webvtt / test / crashtests / 894104.html
blobd021994e745f109812d2ca33e8e98280e799e85d
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <script>
7 function boom()
9 var frame = document.getElementById("f");
10 var frameWin = frame.contentWindow;
11 frameWin.VTTCue;
12 document.body.removeChild(frame);
13 new frameWin.VTTCue(0, 1, "Bug 894104").getCueAsHTML();
16 </script>
17 </head>
19 <body onload="boom();"><iframe id="f" src="data:text/html,1"></iframe></body>
20 </html>