fune/browser/components/customizableui/test/browser_check_tooltips_in_navbar.js
Katie Broida 6b12bb7807 Bug 1093750 - Add tooltips to icons in Customize mode. r=jaws
MozReview-Commit-ID: HYgprjtoOcE

--HG--
extra : transplant_source : H%E5%BF%92F%7D%E2%D3%99r%18%F6%8D%D8%3A%D8y%92N%D1
2016-05-02 11:33:07 -04:00

14 lines
696 B
JavaScript

/* 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();
});