Bug 1020039 - Intermittent relations/test_embeds.xul, add extra output, stage2

This commit is contained in:
Alexander Surkov 2014-09-11 19:46:28 -04:00
parent 89737a3ba1
commit bb7d69589e

View File

@ -59,7 +59,11 @@
this.match = function browserReorderChecker_match(aEvent) this.match = function browserReorderChecker_match(aEvent)
{ {
// Reorder event might be duped because of temporary document creation. // Reorder event might be duped because of temporary document creation.
if (aEvent.accessible == getAccessible(currentBrowser())) { var browserAcc = getAccessible(currentBrowser());
if (!browserAcc)
ok(false, "opa opa sralslasya");
if (aEvent.accessible == browserAcc) {
this.cnt++; this.cnt++;
return this.cnt != 2; return this.cnt != 2;
} }