blob: 9c7b30605f75ad09e68b3c19e5a178d74396b971 (
plain)
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint-disable mozilla/no-arbitrary-setTimeout */
"use strict";
// Test that when first hovering over a node and immediately after selecting it
// by clicking on it, the highlighter stays visible
const TEST_URL =
"data:text/html;charset=utf-8," + "<p>It's going to be legen....</p>";
add_task(async function() {
const { inspector, testActor } = await openInspectorForURL(TEST_URL);
info("hovering over the <p> line in the markup-view");
await hoverContainer("p", inspector);
let isVisible = await testActor.isHighlighting();
ok(isVisible, "the highlighter is still visible");
info("selecting the <p> line by clicking in the markup-view");
await clickContainer("p", inspector);
info(
"wait and see if the highlighter stays visible even after the node " +
"was selected"
);
await testActor.setProperty("p", "textContent", "dary!!!!");
isVisible = await testActor.isHighlighting();
ok(isVisible, "the highlighter is still visible");
});
|