Bug 1538056 Part 4 - Add test for setting column breakpoints in inline scripts, r...
[gecko.git] / devtools / client / debugger / test / mochitest / browser_dbg-inline-script-offset.js
blobdf1d2cc908adeac9e84da4281dcee4b45a9c37c1
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
5 "use strict";
7 // Test that breakpoints work when set in inline scripts that do not start at column 0.
9 // Debugger operations may still be in progress when we navigate.
10 const { PromiseTestUtils } = ChromeUtils.import(
11   "resource://testing-common/PromiseTestUtils.jsm"
13 PromiseTestUtils.whitelistRejectionsGlobally(/Page has navigated/);
15 add_task(async function() {
16   const dbg = await initDebugger("doc-inline-script-offset.html");
17   await addBreakpoint(dbg, "doc-inline-script-offset.html", 6, 66);
18   await reload(dbg);
19   await waitForPaused(dbg);
20   ok(true, "paused after reloading at column breakpoint");
21 });