summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_selector-highlighter_03.js
blob: 1ffbac012cb70fc256d3bf3eb74ee4d0fa2697a5 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
/* 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.

// Note that in this test, we mock the highlighter front, merely testing the
// behavior of the style-inspector UI for now

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(function* () {
  yield addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
  let {inspector, view} = yield openRuleView();

  // Mock the highlighter front.
  let HighlighterFront = {
    isShown: false,
    show: function () {
      this.isShown = true;
    },
    hide: function () {
      this.isShown = false;
    }
  };

  // Inject the mock highlighter in the rule-view
  view.selectorHighlighter = HighlighterFront;

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

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

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

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

  info("Selecting .node-2");
  yield selectNode(".node-2", inspector);
  ok(HighlighterFront.isShown,
    "The highlighter is still shown after selection");

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

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