blob: 3a014a68f79297b0011284e707dcd6c2532bfe37 (
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
33
34
35
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test that the selector highlighter is hidden on page navigation.
const TEST_URI = `
<style type="text/css">
body, p, td {
background: red;
}
</style>
Test the selector highlighter
`;
const TEST_URI_2 = "data:text/html,<html><body>test</body></html>";
add_task(async function () {
await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
const { inspector, view } = await openRuleView();
info("Clicking on a selector icon");
const { highlighter, isShown } = await clickSelectorIcon(view, "body, p, td");
ok(highlighter, "The selector highlighter instance was created");
ok(isShown, "The selector highlighter was shown");
await navigateTo(TEST_URI_2);
const activeHighlighter = inspector.highlighters.getActiveHighlighter(
inspector.highlighters.TYPES.SELECTOR
);
ok(!activeHighlighter, "No selector highlighter is active");
});
|