summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/test/browser_inspector_inspect_parent_process_page.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--devtools/client/inspector/test/browser_inspector_inspect_parent_process_page.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/devtools/client/inspector/test/browser_inspector_inspect_parent_process_page.js b/devtools/client/inspector/test/browser_inspector_inspect_parent_process_page.js
new file mode 100644
index 0000000000..79e1907152
--- /dev/null
+++ b/devtools/client/inspector/test/browser_inspector_inspect_parent_process_page.js
@@ -0,0 +1,29 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+// Check that the "inspect element" context menu item works for parent process
+// chrome pages.
+add_task(async function () {
+ const tab = await addTab("about:debugging");
+
+ const browser = tab.linkedBrowser;
+ const document = browser.contentDocument;
+
+ info("Wait until Connect page is displayed");
+ await waitUntil(() => document.querySelector(".qa-connect-page"));
+ const inspector = await clickOnInspectMenuItem(".qa-network-form-input");
+
+ const selectedNode = inspector.selection.nodeFront;
+ ok(selectedNode, "A node is selected in the inspector");
+ is(
+ selectedNode.tagName.toLowerCase(),
+ "input",
+ "The selected node has the correct tagName"
+ );
+ ok(
+ selectedNode.className.includes("qa-network-form-input"),
+ "The selected node has the expected className"
+ );
+});