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

"use strict";

const TEST_URI = `
<style type="text/css">
  #rule-from-stylesheet {
    color: red;
  }
</style>
<div id=inline style="cursor:pointer">
  A
  <div id=inherited>B</div>
</div>
<div id=rule-from-stylesheet>C</a>
`;

// This test will assert that specific elements of a ruleview rule have been
// rendered in the expected order. This is specifically done to check the fix
// for Bug 1664511, where some elements were rendered out of order due to
// unexpected async processing.
add_task(async function () {
  await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
  const { inspector, view } = await openRuleView();

  await selectNode("#inline", inspector);
  checkRuleViewRuleMarkupOrder(view, "element");
  await selectNode("#inherited", inspector);
  checkRuleViewRuleMarkupOrder(view, "element", 1);
  await selectNode("#rule-from-stylesheet", inspector);
  checkRuleViewRuleMarkupOrder(view, "#rule-from-stylesheet");
});

function checkRuleViewRuleMarkupOrder(view, selectorText, index = 0) {
  const rule = getRuleViewRule(view, selectorText, index);

  // Retrieve the individual elements to assert.
  const selectorContainer = rule.querySelector(".ruleview-selectorcontainer");
  const highlighterIcon = rule.querySelector(".js-toggle-selector-highlighter");
  const ruleOpenBrace = rule.querySelector(".ruleview-ruleopen");

  const parentNode = selectorContainer.parentNode;
  const childNodes = [...parentNode.childNodes];

  ok(
    childNodes.indexOf(selectorContainer) < childNodes.indexOf(highlighterIcon),
    "Selector text is rendered before the highlighter icon"
  );
  ok(
    childNodes.indexOf(highlighterIcon) < childNodes.indexOf(ruleOpenBrace),
    "Highlighter icon is rendered before the opening brace"
  );
}