summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/test/mochitest/browser_dbg-gc-sources.js
blob: e4a6da536a49b1bd8d205f88c91048825e124093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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");
});