mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
1.0 KiB
JavaScript
32 lines
1.0 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
// Bug 624734 - Star UI has no tooltip until bookmarked page is visited
|
|
|
|
function finishTest() {
|
|
is(BookmarkingUI.button.getAttribute("buttontooltiptext"),
|
|
BookmarkingUI._unstarredTooltip,
|
|
"Star icon should have the unstarred tooltip text");
|
|
|
|
gBrowser.removeCurrentTab();
|
|
finish();
|
|
}
|
|
|
|
function test() {
|
|
waitForExplicitFinish();
|
|
|
|
let tab = gBrowser.selectedTab = gBrowser.addTab();
|
|
tab.linkedBrowser.addEventListener("load", (function(event) {
|
|
tab.linkedBrowser.removeEventListener("load", arguments.callee, true);
|
|
|
|
if (BookmarkingUI.status == BookmarkingUI.STATUS_UPDATING) {
|
|
waitForCondition(function() BookmarkingUI.status != BookmarkingUI.STATUS_UPDATING, finishTest, "BookmarkingUI was updating for too long");
|
|
} else {
|
|
finishTest();
|
|
}
|
|
}), true);
|
|
|
|
tab.linkedBrowser.loadURI("http://example.com/browser/browser/base/content/test/general/dummy_page.html");
|
|
}
|