blob: 8d7b3a1cfc7d178be1649abdc852a468e4106afd (
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Test to ensure inspector handles deletion of selected node correctly.
const TEST_URL = URL_ROOT + "doc_inspector_delete-selected-node-01.html";
add_task(async function () {
const { inspector } = await openInspectorForURL(TEST_URL);
const spanNodeFront = await getNodeFrontInFrames(
["iframe", "span"],
inspector
);
await selectNode(spanNodeFront, inspector);
info("Removing selected <span> element.");
const parentNode = spanNodeFront.parentNode();
await spanNodeFront.inspectorFront.walker.removeNode(spanNodeFront);
// Wait for the inspector to process the mutation
await inspector.once("inspector-updated");
is(
inspector.selection.nodeFront,
parentNode,
"Parent node of selected <span> got selected."
);
});
|