tenfourfox/devtools/client/debugger/test/mochitest/browser_dbg_pretty-print-03.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

34 lines
896 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Make sure that we have the correct line selected after pretty printing.
*/
const TAB_URL = EXAMPLE_URL + "doc_pretty-print.html";
function test() {
initDebugger(TAB_URL).then(([aTab,, aPanel]) => {
const gTab = aTab;
const gPanel = aPanel;
const gDebugger = gPanel.panelWin;
Task.spawn(function*() {
yield waitForSourceShown(gPanel, "code_ugly.js");
const paused = waitForPause(gDebugger.gThreadClient);
callInTab(gTab, "foo");
yield paused;
const finished = promise.all([
waitForSourceShown(gPanel, "code_ugly.js"),
waitForCaretUpdated(gPanel, 7)
]);
gDebugger.document.getElementById("pretty-print").click();
yield finished;
resumeDebuggerThenCloseAndFinish(gPanel);
});
});
}