blob: f69c328db0b55e26ea15a83c71f1c5034bf77096 (
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
|
/* 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";
// Test that pseudoelements are displayed correctly in the markup view.
const TEST_URI = URL_ROOT + "doc_pseudoelement.html";
add_task(function* () {
yield addTab(TEST_URI);
let {inspector} = yield openRuleView();
let node = yield getNodeFront("#topleft", inspector);
let children = yield inspector.markup.walker.children(node);
is(children.nodes.length, 3, "Element has correct number of children");
let beforeElement = children.nodes[0];
is(beforeElement.tagName, "_moz_generated_content_before",
"tag name is correct");
yield selectNode(beforeElement, inspector);
let afterElement = children.nodes[children.nodes.length - 1];
is(afterElement.tagName, "_moz_generated_content_after",
"tag name is correct");
yield selectNode(afterElement, inspector);
});
|