Bug 483967 - Mochitest test_regExpStatics.html runs fine but needs to check/report success; (Av1) Add |ok(true, ...);|; r=jonas

This commit is contained in:
Serge Gautherie 2009-04-10 12:30:30 +02:00
parent 366f022f42
commit 4205221e9a

View File

@ -22,6 +22,7 @@ Tests of DOM Worker Threads RegExp statics
var doneWorkers = 0;
function onmessage(event) {
if (++doneWorkers == WORKER_COUNT) {
ok(true, "All messages received from workers");
SimpleTest.finish();
}
}