comparison: testing/mochitest/tests/browser/browser_async.js
testing/mochitest/tests/browser/browser_async.js
- changeset 0
- 6474c204b198
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 } |