Bug 1660051 [wpt PR 25111] - Origin isolation: expand getter test coverage, a=testonly
[gecko.git] / dom / base / crashtests / 713417-1.html
bloba5bfd0f80905ae83b113a0505402d98e55e31369
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
6 function boom()
8 var f = document.getElementById("f");
9 var w = f.contentWindow;
10 var d = w.document;
11 d.designMode = 'on';
12 var r = d.documentElement;
13 d.removeChild(r);
14 document.adoptNode(r);
15 f.remove();
18 </script>
19 </head>
20 <body onload="boom();">
21 <iframe src="data:text/html,1" id="f"></iframe>
22 </body>
23 </html>