summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_selector-highlighter_03.js
blob: 1c43e6adad7afd2ddb643fae34ae7f1b9676bace (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
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
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test that the selector highlighter toggling mechanism works correctly.

const TEST_URI = `
  <style type="text/css">
    div {text-decoration: underline;}
    .node-1 {color: red;}
    .node-2 {color: green;}
  </style>
  <div class="node-1">Node 1</div>
  <div class="node-2">Node 2</div>
`;

add_task(async function () {
  await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
  const { inspector, view } = await openRuleView();
  let data;

  info("Select .node-1 and click on the .node-1 selector icon");
  await selectNode(".node-1", inspector);
  data = await clickSelectorIcon(view, ".node-1");
  ok(data.isShown, "The highlighter is shown");

  info("With .node-1 still selected, click again on the .node-1 selector icon");
  data = await clickSelectorIcon(view, ".node-1");
  ok(!data.isShown, "The highlighter is now hidden");

  info("With .node-1 still selected, click on the div selector icon");
  data = await clickSelectorIcon(view, "div");
  ok(data.isShown, "The highlighter is shown again");

  info("With .node-1 still selected, click again on the .node-1 selector icon");
  data = await clickSelectorIcon(view, ".node-1");
  ok(
    data.isShown,
    "The highlighter is shown again since the clicked selector was different"
  );

  info("Selecting .node-2");
  await selectNode(".node-2", inspector);
  const activeHighlighter = inspector.highlighters.getActiveHighlighter(
    inspector.highlighters.TYPES.SELECTOR
  );
  ok(activeHighlighter, "The highlighter is still shown after selection");

  info("With .node-2 selected, click on the div selector icon");
  data = await clickSelectorIcon(view, "div");
  ok(
    data.isShown,
    "The highlighter is shown still since the selected was different"
  );

  info("Switching back to .node-1 and clicking on the div selector");
  await selectNode(".node-1", inspector);
  data = await clickSelectorIcon(view, "div");
  ok(
    !data.isShown,
    "The highlighter is hidden now that the same selector was clicked"
  );
});