mirror of
https://github.com/roytam1/UXP.git
synced 2026-06-10 18:38:34 +00:00
42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ft=javascript ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Breaking in the middle of a script evaluated by the console should
|
|
* work
|
|
*/
|
|
|
|
function test() {
|
|
Task.spawn(function* () {
|
|
let TAB_URL = EXAMPLE_URL + "doc_empty-tab-01.html";
|
|
let [,, panel] = yield initDebugger(TAB_URL, { source: null });
|
|
let dbgWin = panel.panelWin;
|
|
let sources = dbgWin.DebuggerView.Sources;
|
|
let frames = dbgWin.DebuggerView.StackFrames;
|
|
let editor = dbgWin.DebuggerView.editor;
|
|
let toolbox = gDevTools.getToolbox(panel.target);
|
|
|
|
let paused = promise.all([
|
|
waitForEditorEvents(panel, "cursorActivity"),
|
|
waitForDebuggerEvents(panel, dbgWin.EVENTS.SOURCE_SHOWN)
|
|
]);
|
|
|
|
toolbox.once("webconsole-ready", () => {
|
|
ok(toolbox.splitConsole, "Split console is shown.");
|
|
let jsterm = toolbox.getPanel("webconsole").hud.jsterm;
|
|
jsterm.execute("debugger");
|
|
});
|
|
EventUtils.synthesizeKey("VK_ESCAPE", {}, dbgWin);
|
|
|
|
yield paused;
|
|
is(sources.selectedItem.attachment.label, "SCRIPT0",
|
|
"Anonymous source is selected in sources");
|
|
ok(editor.getText() === "debugger", "Editor has correct text");
|
|
|
|
yield toolbox.closeSplitConsole();
|
|
yield resumeDebuggerThenCloseAndFinish(panel);
|
|
});
|
|
}
|