Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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 }