summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/tests/browser/browser_fail_async_throw.js
blob: 201cb241e651152518ef423c90be0184bd0173fb (plain)
1
2
3
4
5
6
7
function test() {
  function end() {
    throw "thrown exception";
  }
  waitForExplicitFinish();
  setTimeout(end, 1000);
}