Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review: https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 function test() {
2 waitForExplicitFinish();
3 function done() {
4 ok(true, "timeout ran");
5 finish();
6 }
7
8 ok(OpenBrowserWindow(), "opened browser window");
9 // and didn't close it!
10
11 setTimeout(done, 10000);
12 }