comparison: testing/mochitest/tests/browser/browser_fail_async_throw.js
testing/mochitest/tests/browser/browser_fail_async_throw.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function test() { |
|
2 function end() { |
|
3 throw "thrown exception"; |
|
4 } |
|
5 waitForExplicitFinish(); |
|
6 setTimeout(end, 1000); |
|
7 } |