summaryrefslogtreecommitdiffstats
path: root/devtools/shared/tests/chrome/test_css-logic-findCssSelector.html
blob: b7d364664bcfc861c29032e3ff3f7e1ac0be91e7 (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
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for CSS logic helper </title>

  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
  <script type="application/javascript">
"use strict";

const { require } = ChromeUtils.importESModule("resource://devtools/shared/loader/Loader.sys.mjs");
const { findCssSelector } = require("devtools/shared/inspector/css-logic");

var _tests = [];
function addTest(test) {
  _tests.push(test);
}

function runNextTest() {
  if (!_tests.length) {
    SimpleTest.finish();
    return;
  }
  _tests.shift()();
}

window.onload = function() {
  SimpleTest.waitForExplicitFinish();
  runNextTest();
};

addTest(function findAllCssSelectors() {
  const nodes = document.querySelectorAll("*");
  for (let i = 0; i < nodes.length; i++) {
    const selector = findCssSelector(nodes[i]);
    const matches = document.querySelectorAll(selector);

    is(matches.length, 1, "There is a single match: " + selector);
    is(matches[0], nodes[i], "The selector matches the correct node: " + selector);
  }

  runNextTest();
});

addTest(function findCssSelectorNotContainedInDocument() {
  const unattached = document.createElement("div");
  unattached.id = "unattached";
  is(findCssSelector(unattached), "", "Unattached node returns empty string");

  const unattachedChild = document.createElement("div");
  unattached.appendChild(unattachedChild);
  is(findCssSelector(unattachedChild), "", "Unattached child returns empty string");

  const unattachedBody = document.createElement("body");
  is(findCssSelector(unattachedBody), "", "Unattached body returns empty string");

  runNextTest();
});

addTest(function findCssSelectorBasic() {
  const data = [
    "#one",
    "#" + CSS.escape("2"),
    ".three",
    "." + CSS.escape("4"),
    "#find-css-selector > div:nth-child(5)",
    "#find-css-selector > p:nth-child(6)",
    ".seven",
    ".eight",
    ".nine",
    ".ten",
    "div.sameclass:nth-child(11)",
    "div.sameclass:nth-child(12)",
    "div.sameclass:nth-child(13)",
    "#" + CSS.escape("!, \", #, $, %, &, ', (, ), *, +, ,, -, ., /, :, ;, <, =, >, ?, @, [, \\, ], ^, `, {, |, }, ~"),
  ];

  const container = document.querySelector("#find-css-selector");
  is(container.children.length, data.length, "Container has correct number of children.");

  for (let i = 0; i < data.length; i++) {
    const node = container.children[i];
    is(findCssSelector(node), data[i], "matched id for index " + (i - 1));
  }

  runNextTest();
});
  </script>
</head>
<body>
  <div id="find-css-selector">
    <div id="one"></div> <!-- Basic ID -->
    <div id="2"></div> <!-- Escaped ID -->
    <div class="three"></div> <!-- Basic Class -->
    <div class="4"></div> <!-- Escaped Class -->
    <div attr="5"></div>  <!-- Only an attribute -->
    <p></p> <!-- Nothing unique -->
    <div class="seven seven"></div> <!-- Two classes with same name -->
    <div class="eight eight2"></div> <!-- Two classes with different names -->

    <!-- Two elements with the same id - should not use ID -->
    <div class="nine" id="nine-and-ten"></div>
    <div class="ten" id="nine-and-ten"></div>

    <!-- Three elements with the same id - should use class and nth-child instead -->
    <div class="sameclass" id="11-12-13"></div>
    <div class="sameclass" id="11-12-13"></div>
    <div class="sameclass" id="11-12-13"></div>

    <!-- Special characters -->
    <div id="!, &quot;, #, $, %, &amp;, ', (, ), *, +, ,, -, ., /, :, ;, <, =, >, ?, @, [, \, ], ^, `, {, |, }, ~"></div>
  </div>
</body>
</html>