From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../shared/test/browser_html_tooltip_hover.js | 65 ++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 devtools/client/shared/test/browser_html_tooltip_hover.js (limited to 'devtools/client/shared/test/browser_html_tooltip_hover.js') diff --git a/devtools/client/shared/test/browser_html_tooltip_hover.js b/devtools/client/shared/test/browser_html_tooltip_hover.js new file mode 100644 index 000000000..8a661bbe1 --- /dev/null +++ b/devtools/client/shared/test/browser_html_tooltip_hover.js @@ -0,0 +1,65 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ +/* import-globals-from helper_html_tooltip.js */ + +"use strict"; + +/** + * Test the TooltipToggle helper class for HTMLTooltip + */ + +const HTML_NS = "http://www.w3.org/1999/xhtml"; +const TEST_URI = `data:text/xml;charset=UTF-8, + + + + + + + + + + + `; + +const {HTMLTooltip} = require("devtools/client/shared/widgets/tooltip/HTMLTooltip"); +loadHelperScript("helper_html_tooltip.js"); + +add_task(function* () { + let [,, doc] = yield createHost("bottom", TEST_URI); + // Wait for full page load before synthesizing events on the page. + yield waitUntil(() => doc.readyState === "complete"); + + let width = 100, height = 50; + let tooltipContent = doc.createElementNS(HTML_NS, "div"); + tooltipContent.textContent = "tooltip"; + let tooltip = new HTMLTooltip(doc, {useXulWrapper: false}); + tooltip.setContent(tooltipContent, {width, height}); + + let container = doc.getElementById("container"); + tooltip.startTogglingOnHover(container, () => true); + + info("Hover on each of the 4 boxes, expect the tooltip to appear"); + function* showAndCheck(boxId, position) { + info(`Show tooltip on ${boxId}`); + let box = doc.getElementById(boxId); + let shown = tooltip.once("shown"); + EventUtils.synthesizeMouseAtCenter(box, { type: "mousemove" }, doc.defaultView); + yield shown; + checkTooltipGeometry(tooltip, box, {position, width, height}); + } + + yield showAndCheck("box1", "bottom"); + yield showAndCheck("box2", "bottom"); + yield showAndCheck("box3", "top"); + yield showAndCheck("box4", "top"); + + info("Move out of the container"); + let hidden = tooltip.once("hidden"); + EventUtils.synthesizeMouseAtCenter(container, { type: "mouseout" }, doc.defaultView); + yield hidden; + + info("Destroy the tooltip and finish"); + tooltip.destroy(); +}); -- cgit v1.2.3