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