summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-pause-exceptions.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-pause-exceptions.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-pause-exceptions.js')
-rw-r--r--devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-pause-exceptions.js54
1 files changed, 54 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-pause-exceptions.js b/devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-pause-exceptions.js
new file mode 100644
index 0000000000..8a76831e8c
--- /dev/null
+++ b/devtools/client/debugger/test/mochitest/browser_dbg-fission-frame-pause-exceptions.js
@@ -0,0 +1,54 @@
+/* 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-pause-exceptions.html`;
+// Tests Pause on exceptions in remote iframes
+
+add_task(async function () {
+ // Load a test page with a remote iframe
+ const dbg = await initDebuggerWithAbsoluteURL(TEST_COM_URI);
+
+ info("Test pause on exceptions ignoring caught exceptions");
+ await togglePauseOnExceptions(dbg, true, false);
+
+ let onReloaded = reload(dbg);
+ await waitForPaused(dbg);
+
+ assertPausedAtSourceAndLine(
+ dbg,
+ findSource(dbg, "doc_dbg-fission-frame-pause-exceptions.html").id,
+ 17
+ );
+
+ await resume(dbg);
+ info("Wait for reload to complete after resume");
+ await onReloaded;
+
+ info("Test pause on exceptions including caught exceptions");
+ await togglePauseOnExceptions(dbg, true, true);
+
+ onReloaded = reload(dbg);
+ await waitForPaused(dbg);
+
+ assertPausedAtSourceAndLine(
+ dbg,
+ findSource(dbg, "doc_dbg-fission-frame-pause-exceptions.html").id,
+ 13
+ );
+
+ await resume(dbg);
+ await waitForPaused(dbg);
+
+ assertPausedAtSourceAndLine(
+ dbg,
+ findSource(dbg, "doc_dbg-fission-frame-pause-exceptions.html").id,
+ 17
+ );
+
+ await resume(dbg);
+ info("Wait for reload to complete after resume");
+ await onReloaded;
+});