gavin%gavinsharp.com 0b1735dc51 Bug 387895: add sample tests for the browser-chrome framework, r=robcee
git-svn-id: svn://10.0.0.236/trunk@229814 18797224-902f-48f8-a5cc-f745e15eee43
2007-07-12 15:43:08 +00:00

9 lines
141 B
JavaScript

function test() {
waitForExplicitFinish();
function done() {
ok(true, "timeout ran");
finish();
}
setTimeout(done, 10000);
}