comparison: testing/mochitest/tests/browser/browser_async.js
testing/mochitest/tests/browser/browser_async.js
- branch
- TOR_BUG_9701
- changeset 15
- b8a032363ba2
equal
deleted
inserted
replaced
|
1 function test() { |
|
2 waitForExplicitFinish(); |
|
3 function done() { |
|
4 ok(true, "timeout ran"); |
|
5 finish(); |
|
6 } |
|
7 setTimeout(done, 10000); |
|
8 } |