Bug 1660051 [wpt PR 25111] - Origin isolation: expand getter test coverage, a=testonly
[gecko.git] / dom / base / crashtests / 1393806.html
blob4e859bf602c5178adcabb3eb703027f4e10688ac
1 <html>
2 <head>
3 <script>
4 function fun_0() {
5 document.implementation.createDocument('', '', null).adoptNode(o2);
8 o1 = document.createElement('map');
9 o2 = document.createElement('iframe');
10 document.documentElement.appendChild(o1);
11 document.documentElement.appendChild(o2);
12 o1.textContent = 'x';
13 document.addEventListener('DOMNodeRemoved', fun_0, false);
14 o1.innerText = 'x';
15 </script>
16 </head>
17 </html>