summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg-gc-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-gc-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-gc-sources.js')
-rw-r--r--devtools/client/debugger/test/mochitest/browser_dbg-gc-sources.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/devtools/client/debugger/test/mochitest/browser_dbg-gc-sources.js b/devtools/client/debugger/test/mochitest/browser_dbg-gc-sources.js
new file mode 100644
index 0000000000..e4a6da536a
--- /dev/null
+++ b/devtools/client/debugger/test/mochitest/browser_dbg-gc-sources.js
@@ -0,0 +1,29 @@
+/* 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/>. */
+
+// Test that we can set breakpoints in scripts that have been GCed.
+// Check that breakpoints can be set in GC'ed inline scripts, and in
+// generated and original sources of scripts with source maps specified either
+// inline or in their HTTP response headers.
+
+"use strict";
+
+add_task(async function () {
+ const dbg = await initDebugger(
+ "doc-gc-sources.html",
+ "doc-gc-sources.html",
+ "collected-bundle.js",
+ "collected.js",
+ "collected2.js"
+ );
+ await selectSource(dbg, "doc-gc-sources.html");
+ await addBreakpoint(dbg, "doc-gc-sources.html", 21);
+ await selectSource(dbg, "collected-bundle.js");
+ await addBreakpoint(dbg, "collected-bundle.js", 31);
+ await selectSource(dbg, "collected.js");
+ await addBreakpoint(dbg, "collected.js", 2);
+ await selectSource(dbg, "collected2.js");
+ await addBreakpoint(dbg, "collected2.js", 2);
+ ok(true, "Added breakpoint in GC'ed sources");
+});