bug 620789 - Dump state of PlacesStarButton to try figure out intermittent failure in browser_bug581253.js

a=tests-only
This commit is contained in:
Marco Bonardo 2011-02-15 12:39:32 +01:00
Родитель d9aa63e05d
Коммит e259deb689
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -37,6 +37,7 @@ function test() {
function waitForStarChange(aValue, aCallback) {
if (PlacesStarButton._pendingStmt || starButton.hasAttribute("starred") != aValue) {
info("Waiting for star button change.");
info("pendingStmt: " + (!!PlacesStarButton._pendingStmt) + ", hasAttribute: " + starButton.hasAttribute("starred") + ", tracked uri: " + PlacesStarButton._uri.spec);
timerID = setTimeout(arguments.callee, 50, aValue, aCallback);
return;
}