summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_strict-search-filter_01.js
blob: 50948e1742e7dc3fa7ee0854c41bf1f665d951ae (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* 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";

// Tests that the rule view strict search filter works properly for property
// names.

const TEST_URI = `
  <style type="text/css">
    #testid {
      width: 2%;
      color: red;
    }
    .testclass {
      width: 22%;
      background-color: #00F;
    }
  </style>
  <h1 id="testid" class="testclass">Styled Node</h1>
`;

const TEST_DATA = [
  {
    desc: "Tests that the strict search filter works properly for property " +
          "names",
    search: "`color`",
    ruleCount: 2,
    propertyIndex: 1
  },
  {
    desc: "Tests that the strict search filter works properly for property " +
          "values",
    search: "`2%`",
    ruleCount: 2,
    propertyIndex: 0
  },
  {
    desc: "Tests that the strict search filter works properly for parsed " +
          "property names",
    search: "`color`:",
    ruleCount: 2,
    propertyIndex: 1
  },
  {
    desc: "Tests that the strict search filter works properly for parsed " +
          "property values",
    search: ":`2%`",
    ruleCount: 2,
    propertyIndex: 0
  },
  {
    desc: "Tests that the strict search filter works properly for property " +
          "line input",
    search: "`width`:`2%`",
    ruleCount: 2,
    propertyIndex: 0
  },
  {
    desc: "Tests that the search filter works properly for a parsed strict " +
          "property name and non-strict property value.",
    search: "`width`:2%",
    ruleCount: 3,
    propertyIndex: 0
  },
  {
    desc: "Tests that the search filter works properly for a parsed strict " +
          "property value and non-strict property name.",
    search: "i:`2%`",
    ruleCount: 2,
    propertyIndex: 0
  }
];

add_task(function* () {
  yield addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
  let {inspector, view} = yield openRuleView();
  yield selectNode("#testid", inspector);
  yield testAddTextInFilter(inspector, view);
});

function* testAddTextInFilter(inspector, view) {
  for (let data of TEST_DATA) {
    info(data.desc);
    yield setSearchFilter(view, data.search);
    yield checkRules(view, data);
    yield clearSearchAndCheckRules(view);
  }
}

function* checkRules(view, data) {
  info("Check that the correct rules are visible");
  is(view.element.children.length, data.ruleCount,
    "Should have " + data.ruleCount + " rules.");
  is(getRuleViewRuleEditor(view, 0).rule.selectorText, "element",
    "First rule is inline element.");

  let rule = getRuleViewRuleEditor(view, 1).rule;

  is(rule.selectorText, "#testid", "Second rule is #testid.");
  ok(rule.textProps[data.propertyIndex].editor.container.classList
    .contains("ruleview-highlight"),
    "Text property is correctly highlighted.");

  if (data.ruleCount > 2) {
    rule = getRuleViewRuleEditor(view, 2).rule;
    is(rule.selectorText, ".testclass", "Third rule is .testclass.");
    ok(rule.textProps[data.propertyIndex].editor.container.classList
      .contains("ruleview-highlight"),
      "Text property is correctly highlighted.");
  }
}

function* clearSearchAndCheckRules(view) {
  let doc = view.styleDocument;
  let win = view.styleWindow;
  let searchField = view.searchField;
  let searchClearButton = view.searchClearButton;

  info("Clearing the search filter");
  EventUtils.synthesizeMouseAtCenter(searchClearButton, {}, win);
  yield view.inspector.once("ruleview-filtered");

  info("Check the search filter is cleared and no rules are highlighted");
  is(view.element.children.length, 3, "Should have 3 rules.");
  ok(!searchField.value, "Search filter is cleared.");
  ok(!doc.querySelectorAll(".ruleview-highlight").length,
    "No rules are higlighted.");
}