summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/chrome/test_inspector-pseudoclass-lock.html
blob: 949066255d20bf34ac4101a3e68ae0e1d27f5048 (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug </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" src="inspector-helpers.js"></script>
  <script type="application/javascript">
"use strict";

const { PSEUDO_CLASSES } = require("devtools/shared/css/constants");

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

let gInspectee = null;
let gWalker = null;

async function setup(callback) {
  const url = document.getElementById("inspectorContent").href;
  const { target, doc } = await attachURL(url);
  gInspectee = doc;
  const inspector = await target.getFront("inspector");
  ok(inspector.walker, "getWalker() should return an actor.");
  gWalker = inspector.walker;
  runNextTest();
}

function teardown() {
  gWalker = null;
  gInspectee = null;
}

function checkChange(change, expectation) {
  is(change.type, "pseudoClassLock", "Expect a pseudoclass lock change.");
  const target = change.target;
  if (expectation.id) {
    is(target.id, expectation.id, "Expect a change on node id " + expectation.id);
  }
  if (expectation.nodeName) {
    is(target.nodeName, expectation.nodeName,
       "Expect a change on node name " + expectation.nodeName);
  }

  is(target.pseudoClassLocks.length, expectation.pseudos.length,
     "Expect " + expectation.pseudos.length + " pseudoclass locks.");
  for (let i = 0; i < expectation.pseudos.length; i++) {
    const pseudo = expectation.pseudos[i];
    const enabled = expectation.enabled === undefined ? true : expectation.enabled[i];
    ok(target.hasPseudoClassLock(pseudo), "Expect lock: " + pseudo);
    const rawNode = target.rawNode();
    ok(InspectorUtils.hasPseudoClassLock(rawNode, pseudo),
       "Expect lock in dom: " + pseudo);

    is(rawNode.matches(pseudo), enabled,
       `Target should match pseudoclass, '${pseudo}', if enabled (with .matches())`);
  }

  for (const pseudo of PSEUDO_CLASSES) {
    if (!expectation.pseudos.some(expected => pseudo === expected)) {
      ok(!target.hasPseudoClassLock(pseudo), "Don't expect lock: " + pseudo);
      ok(!InspectorUtils.hasPseudoClassLock(target.rawNode(), pseudo),
         "Don't expect lock in dom: " + pseudo);
    }
  }
}

function checkMutations(mutations, expectations) {
  is(mutations.length, expectations.length, "Should get the right number of mutations.");
  for (let i = 0; i < mutations.length; i++) {
    checkChange(mutations[i], expectations[i]);
  }
}

addTest(function testPseudoClassLock() {
  let contentNode;
  let nodeFront;
  setup(() => {
    contentNode = gInspectee.querySelector("#b");
    return promiseDone(gWalker.querySelector(gWalker.rootNode, "#b").then(front => {
      nodeFront = front;
      // Lock the pseudoclass alone, no parents.
      gWalker.addPseudoClassLock(nodeFront, ":active");
      // Expect a single pseudoClassLock mutation.
      return promiseOnce(gWalker, "mutations");
    }).then(mutations => {
      is(mutations.length, 1, "Should get one mutation");
      is(mutations[0].target, nodeFront, "Should be the node we tried to apply to");
      checkChange(mutations[0], {
        id: "b",
        nodeName: "DIV",
        pseudos: [":active"],
      });
    }).then(() => {
      // Now add :hover, this time with parents.
      gWalker.addPseudoClassLock(nodeFront, ":hover", {parents: true});
      return promiseOnce(gWalker, "mutations");
    }).then(mutations => {
      const expectedMutations = [{
        id: "b",
        nodeName: "DIV",
        pseudos: [":hover", ":active"],
      },
      {
        id: "longlist",
        nodeName: "DIV",
        pseudos: [":hover"],
      },
      {
        nodeName: "BODY",
        pseudos: [":hover"],
      },
      {
        nodeName: "HTML",
        pseudos: [":hover"],
      }];
      checkMutations(mutations, expectedMutations);
    }).then(() => {
      // Now remove the :hover on all parents
      gWalker.removePseudoClassLock(nodeFront, ":hover", {parents: true});
      return promiseOnce(gWalker, "mutations");
    }).then(mutations => {
      const expectedMutations = [{
        id: "b",
        nodeName: "DIV",
        // Should still have :active on the original node.
        pseudos: [":active"],
      },
      {
        id: "longlist",
        nodeName: "DIV",
        pseudos: [],
      },
      {
        nodeName: "BODY",
        pseudos: [],
      },
      {
        nodeName: "HTML",
        pseudos: [],
      }];
      checkMutations(mutations, expectedMutations);
    }).then(() => {
      gWalker.addPseudoClassLock(nodeFront, ":hover", {enabled: false});
      return promiseOnce(gWalker, "mutations");
    }).then(mutations => {
      is(mutations.length, 1, "Should get one mutation");
      is(mutations[0].target, nodeFront, "Should be the node we tried to apply to");
      checkChange(mutations[0], {
        id: "b",
        nodeName: "DIV",
        pseudos: [":hover", ":active"],
        enabled: [false, true],
      });
    }).then(() => {
      // Now shut down the walker and make sure that clears up the remaining lock.
      return gWalker.release();
    }).then(() => {
      ok(!InspectorUtils.hasPseudoClassLock(contentNode, ":active"),
         "Pseudoclass should have been removed during destruction.");
      teardown();
    }).then(runNextTest));
  });
});

  </script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=">Mozilla Bug </a>
<a id="inspectorContent" target="_blank" href="inspector-traversal-data.html">Test Document</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
</pre>
</body>
</html>