summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_highlighter-selector_02.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devtools/client/inspector/test/browser_inspector_highlighter-selector_02.js84
1 files changed, 84 insertions, 0 deletions
diff --git a/devtools/client/inspector/test/browser_inspector_highlighter-selector_02.js b/devtools/client/inspector/test/browser_inspector_highlighter-selector_02.js
new file mode 100644
index 0000000000..800e79c3a8
--- /dev/null
+++ b/devtools/client/inspector/test/browser_inspector_highlighter-selector_02.js
@@ -0,0 +1,84 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+"use strict";
+
+// Test that the custom selector highlighter creates highlighters for nodes in
+// the right frame.
+
+const FRAME_SRC =
+ "data:text/html;charset=utf-8," + "<div class=sub-level-node></div>";
+
+const TEST_URL =
+ "data:text/html;charset=utf-8," +
+ "<div class=root-level-node></div>" +
+ '<iframe src="' +
+ FRAME_SRC +
+ '" />';
+
+const TEST_DATA = [
+ {
+ selector: ".root-level-node",
+ containerCount: 1,
+ },
+ {
+ selector: ".sub-level-node",
+ containerCount: 0,
+ },
+ {
+ inIframe: true,
+ selector: ".root-level-node",
+ containerCount: 0,
+ },
+ {
+ inIframe: true,
+ selector: ".sub-level-node",
+ containerCount: 1,
+ },
+];
+
+requestLongerTimeout(5);
+
+add_task(async function () {
+ const { inspector } = await openInspectorForURL(TEST_URL);
+
+ for (const { inIframe, selector, containerCount } of TEST_DATA) {
+ info(
+ "Showing the highlighter on " +
+ selector +
+ ". Expecting " +
+ containerCount +
+ " highlighter containers"
+ );
+
+ let contextNode;
+ if (inIframe) {
+ contextNode = await getNodeFrontInFrames(["iframe", "body"], inspector);
+ } else {
+ contextNode = await getNodeFront("body", inspector);
+ }
+
+ const inspectorFront = await contextNode.targetFront.getFront("inspector");
+ const highlighter = await inspectorFront.getHighlighterByType(
+ "SelectorHighlighter"
+ );
+ const highlighterTestFront = await getHighlighterTestFront(
+ inspector.toolbox,
+ {
+ target: contextNode.targetFront,
+ }
+ );
+
+ await highlighter.show(contextNode, { selector });
+
+ const nb = await highlighterTestFront.getSelectorHighlighterBoxNb(
+ highlighter.actorID
+ );
+ ok(nb !== null, "The number of highlighters was retrieved");
+
+ is(nb, containerCount, "The correct number of highlighers were created");
+ await highlighter.hide();
+ await highlighter.finalize();
+ }
+});