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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/* 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 the debugger pauses in the multiprocess browser toolbox even when
// it hasn't been opened.
"use strict";
requestLongerTimeout(4);
Services.scriptloader.loadSubScript(
"chrome://mochitests/content/browser/devtools/client/framework/browser-toolbox/test/helpers-browser-toolbox.js",
this
);
add_task(async function() {
await pushPref("devtools.browsertoolbox.fission", true);
// Make sure the toolbox opens with the webconsole initially selected.
await pushPref("devtools.browsertoolbox.panel", "webconsole");
const ToolboxTask = await initBrowserToolboxTask();
await ToolboxTask.importFunctions({
waitUntil,
waitForPaused,
isPaused,
waitForState,
info: () => {},
waitForSelectedSource,
waitForLoadedScopes: () => {},
});
// Select the debugger in advance. (??? not sure about this)
await ToolboxTask.spawn(null, async () => {
await gToolbox.selectTool("jsdebugger");
});
addTab("data:text/html,<script>debugger;</script>");
// The debugger should automatically be selected.
await ToolboxTask.spawn(null, async () => {
await waitUntil(() => gToolbox.currentToolId == "jsdebugger");
});
ok(true, "Debugger selected");
// The debugger should pause.
await ToolboxTask.spawn(null, async () => {
// Wait for the debugger to finish loading.
await gToolbox.selectTool("jsdebugger");
const dbg = gToolbox.getCurrentPanel().panelWin.dbg;
await waitForPaused(dbg);
if (!gToolbox.component.state.highlightedTools.has("jsdebugger")) {
throw new Error("Debugger not highlighted");
}
});
ok(true, "Paused in new tab");
await ToolboxTask.destroy();
});
|