Skip to content
This repository has been archived by the owner on Aug 20, 2018. It is now read-only.

Commit

Permalink
Bustage fix for waitForPageLoad timeouts due to wrong timeout parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
whimboo committed Oct 19, 2010
1 parent e95e731 commit f049743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mozmill/mozmill/extension/resource/modules/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -1239,7 +1239,7 @@ function browserAdditions (controller) {
// Wait until the content in the tab has been loaded
this.waitFor(function() {
return tab.contentDocument.documentLoaded;
}, "controller.waitForPageLoad(): Timeout waiting for page loaded.", aTimeout, aInterval);
}, "controller.waitForPageLoad(): Timeout waiting for page loaded.", timeout, aInterval);

frame.events.pass({'function':'controller.waitForPageLoad()'});
}
Expand Down

1 comment on commit f049743

@AaronMT
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Confirming that this fixes the very early timeouts I was getting on test-runs (10/19)

Please sign in to comment.