1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test that if a tooltip is visible when a new selection is made, it closes
const TEST_URI = "<div class='one'>el 1</div><div class='two'>el 2</div>";
const XHTML_NS = "http://www.w3.org/1999/xhtml";
add_task(async function () {
await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
let { inspector, view } = await openRuleView();
await selectNode(".one", inspector);
info("Testing rule view tooltip closes on new selection");
await testRuleView(view, inspector);
info("Testing computed view tooltip closes on new selection");
view = selectComputedView(inspector);
await testComputedView(view, inspector);
});
async function testRuleView(ruleView, inspector) {
info("Showing the tooltip");
const tooltip = ruleView.tooltips.getTooltip("previewTooltip");
const tooltipContent = ruleView.styleDocument.createElementNS(
XHTML_NS,
"div"
);
tooltip.panel.appendChild(tooltipContent);
tooltip.setContentSize({ width: 100, height: 30 });
// Stop listening for mouse movements because it's not needed for this test,
// and causes intermittent failures on Linux. When this test runs in the suite
// sometimes a mouseleave event is dispatched at the start, which causes the
// tooltip to hide in the middle of being shown, which causes timeouts later.
tooltip.stopTogglingOnHover();
const onShown = tooltip.once("shown");
tooltip.show(ruleView.styleDocument.firstElementChild);
await onShown;
info("Selecting a new node");
const onHidden = tooltip.once("hidden");
await selectNode(".two", inspector);
await onHidden;
ok(true, "Rule view tooltip closed after a new node got selected");
}
async function testComputedView(computedView, inspector) {
info("Showing the tooltip");
const tooltip = computedView.tooltips.getTooltip("previewTooltip");
const tooltipContent = computedView.styleDocument.createElementNS(
XHTML_NS,
"div"
);
tooltip.panel.appendChild(tooltipContent);
await tooltip.setContentSize({ width: 100, height: 30 });
// Stop listening for mouse movements because it's not needed for this test,
// and causes intermittent failures on Linux. When this test runs in the suite
// sometimes a mouseleave event is dispatched at the start, which causes the
// tooltip to hide in the middle of being shown, which causes timeouts later.
tooltip.stopTogglingOnHover();
const onShown = tooltip.once("shown");
tooltip.show(computedView.styleDocument.firstElementChild);
await onShown;
info("Selecting a new node");
const onHidden = tooltip.once("hidden");
await selectNode(".one", inspector);
await onHidden;
ok(true, "Computed view tooltip closed after a new node got selected");
}
|