summaryrefslogtreecommitdiff
path: root/browser/base/content/test/browser_bug624734.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/base/content/test/browser_bug624734.js')
-rw-r--r--browser/base/content/test/browser_bug624734.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/browser/base/content/test/browser_bug624734.js b/browser/base/content/test/browser_bug624734.js
deleted file mode 100644
index 13369a310..000000000
--- a/browser/base/content/test/browser_bug624734.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/* 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 test() {
- waitForExplicitFinish();
-
- let tab = gBrowser.selectedTab = gBrowser.addTab();
- tab.linkedBrowser.addEventListener("load", (function(event) {
- tab.linkedBrowser.removeEventListener("load", arguments.callee, true);
-
- is(BookmarkingUI.star.getAttribute("tooltiptext"),
- BookmarkingUI._unstarredTooltip,
- "Star icon should have the unstarred tooltip text");
-
- gBrowser.removeCurrentTab();
- finish();
- }), true);
-
- tab.linkedBrowser.loadURI("http://example.com/browser/browser/base/content/test/dummy_page.html");
-}