diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /devtools/client/debugger/test/mochitest/browser_dbg-gc-sources.js | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
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.js | 29 |
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..9f3f4fe5de --- /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"); +}); |