summaryrefslogtreecommitdiffstats
path: root/browser/components/customizableui/test/browser_check_tooltips_in_navbar.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/customizableui/test/browser_check_tooltips_in_navbar.js')
-rw-r--r--browser/components/customizableui/test/browser_check_tooltips_in_navbar.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/browser/components/customizableui/test/browser_check_tooltips_in_navbar.js b/browser/components/customizableui/test/browser_check_tooltips_in_navbar.js
deleted file mode 100644
index 31dd42ad8..000000000
--- a/browser/components/customizableui/test/browser_check_tooltips_in_navbar.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-"use strict";
-
-add_task(function* check_tooltips_in_navbar() {
- yield startCustomizing();
- let homeButtonWrapper = document.getElementById("wrapper-home-button");
- let homeButton = document.getElementById("home-button");
- is(homeButtonWrapper.getAttribute("tooltiptext"), homeButton.getAttribute("label"), "the wrapper's tooltip should match the button's label");
- ok(homeButtonWrapper.getAttribute("tooltiptext"), "the button should have tooltip text");
- yield endCustomizing();
-});