summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1181619.html
blob: 929207964dac7e8c685496e2a7919a933e6a7c62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<body>
  <script>
    var obs = new MutationObserver(function() {
      // Just need something here to assert exception is not pending.  Any
      // binding method will do.
      console.log("hello");
    });
    obs.observe(document.body, { childList: true });
  </script>
  <script>
    noSuchMethodYo();
  </script>
</body>