summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/browser_rules_pseudo-element_02.js
blob: d098542758ec51628d1ada7a77f2416e9ee3a96e (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";

// Test that pseudoelements are displayed correctly in the markup view.

const TEST_URI = URL_ROOT + "doc_pseudoelement.html";

add_task(async function () {
  await addTab(TEST_URI);
  const { inspector } = await openRuleView();

  const node = await getNodeFront("#topleft", inspector);
  const children = await inspector.markup.walker.children(node);

  is(children.nodes.length, 3, "Element has correct number of children");

  const beforeElement = children.nodes[0];
  is(
    beforeElement.tagName,
    "_moz_generated_content_before",
    "tag name is correct"
  );
  await selectNode(beforeElement, inspector);

  const afterElement = children.nodes[children.nodes.length - 1];
  is(
    afterElement.tagName,
    "_moz_generated_content_after",
    "tag name is correct"
  );
  await selectNode(afterElement, inspector);

  const listNode = await getNodeFront("#list", inspector);
  const listChildren = await inspector.markup.walker.children(listNode);

  is(listChildren.nodes.length, 4, "<li> has correct number of children");
  const markerElement = listChildren.nodes[0];
  is(
    markerElement.tagName,
    "_moz_generated_content_marker",
    "tag name is correct"
  );
  await selectNode(markerElement, inspector);

  const listBeforeElement = listChildren.nodes[1];
  is(
    listBeforeElement.tagName,
    "_moz_generated_content_before",
    "tag name is correct"
  );
  await selectNode(listBeforeElement, inspector);
});