summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-sources.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-sources.js
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-sources.js')
-rw-r--r--devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-sources.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-sources.js b/devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-sources.js
new file mode 100644
index 0000000000..b40058a7dd
--- /dev/null
+++ b/devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-sources.js
@@ -0,0 +1,47 @@
+/* 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";
+
+const TEST_COM_URI = `${URL_ROOT_COM_SSL}examples/doc_dbg-fission-frame-sources.html`;
+
+add_task(async function () {
+ // Simply load a test page with a remote frame and wait for both sources to
+ // be visible.
+ // simple1.js is imported by the main page. simple2.js comes from the frame.
+ const dbg = await initDebuggerWithAbsoluteURL(
+ TEST_COM_URI,
+ "simple1.js",
+ "simple2.js"
+ );
+
+ const rootNodes = dbg.win.document.querySelectorAll(
+ selectors.sourceTreeRootNode
+ );
+
+ info("Expands the main root node");
+ await expandAllSourceNodes(dbg, rootNodes[0]);
+
+ // We need to assert the actual DOM nodes in the source tree, because the
+ // state can contain simple1.js and simple2.js, but only show one of them.
+ info("Waiting for simple1.js from example.com (parent page)");
+ await waitUntil(() => findSourceNodeWithText(dbg, "simple1.js"));
+
+ // If fission or EFT is enabled, the second source is under another root node.
+ if (isFissionEnabled() || isEveryFrameTargetEnabled()) {
+ is(
+ rootNodes.length,
+ 2,
+ "Found 2 sourceview root nodes when iframe has dedicated target"
+ );
+
+ info("Expands the remote frame root node");
+ await expandAllSourceNodes(dbg, rootNodes[1]);
+ }
+
+ info("Waiting for simple2.js from example.org (frame)");
+ await waitUntil(() => findSourceNodeWithText(dbg, "simple2.js"));
+
+ await dbg.toolbox.closeToolbox();
+});