mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 11:53:07 +09:00
31 lines
947 B
JavaScript
31 lines
947 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// Tests basic pretty-printing functionality.
|
|
|
|
add_task(function* () {
|
|
const dbg = yield initDebugger("doc-minified.html");
|
|
|
|
yield selectSource(dbg, "math.min.js");
|
|
clickElement(dbg, "prettyPrintButton");
|
|
yield waitForDispatch(dbg, "TOGGLE_PRETTY_PRINT");
|
|
|
|
const ppSrc = findSource(dbg, "math.min.js:formatted");
|
|
ok(ppSrc, "Pretty-printed source exists");
|
|
|
|
yield addBreakpoint(dbg, ppSrc, 18);
|
|
|
|
invokeInTab("arithmetic");
|
|
yield waitForPaused(dbg);
|
|
assertPausedLocation(dbg, ppSrc, 18);
|
|
yield stepOver(dbg);
|
|
assertPausedLocation(dbg, ppSrc, 27);
|
|
yield resume(dbg);
|
|
|
|
// The pretty-print button should go away in the pretty-printed
|
|
// source.
|
|
ok(!findElement(dbg, "sourceFooter"), "Footer is hidden");
|
|
|
|
yield selectSource(dbg, "math.min.js");
|
|
ok(findElement(dbg, "sourceFooter"), "Footer is hidden");
|
|
});
|