Bug 1838484 - Don't create module loader for template contents owner document r=smaug
[gecko.git] / dom / base / crashtests / 1181619.html
blob929207964dac7e8c685496e2a7919a933e6a7c62
1 <!DOCTYPE html>
2 <body>
3 <script>
4 var obs = new MutationObserver(function() {
5 // Just need something here to assert exception is not pending. Any
6 // binding method will do.
7 console.log("hello");
8 });
9 obs.observe(document.body, { childList: true });
10 </script>
11 <script>
12 noSuchMethodYo();
13 </script>
14 </body>