mirror of
https://github.com/roytam1/UXP.git
synced 2026-07-02 13:18:34 +00:00
35 lines
1.2 KiB
JavaScript
35 lines
1.2 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/ */
|
|
|
|
/**
|
|
* Bug 1093349: Test that the pretty-printing and blackboxing buttons
|
|
* are hidden if the server doesn't support them
|
|
*/
|
|
|
|
const TAB_URL = EXAMPLE_URL + "doc_auto-pretty-print-01.html";
|
|
|
|
var { RootActor } = require("devtools/server/actors/root");
|
|
|
|
function test() {
|
|
RootActor.prototype.traits.noBlackBoxing = true;
|
|
RootActor.prototype.traits.noPrettyPrinting = true;
|
|
|
|
let options = {
|
|
source: EXAMPLE_URL + "code_ugly-5.js",
|
|
line: 1
|
|
};
|
|
initDebugger(TAB_URL, options).then(([aTab, aDebuggee, aPanel]) => {
|
|
let document = aPanel.panelWin.document;
|
|
let ppButton = document.querySelector("#pretty-print");
|
|
let bbButton = document.querySelector("#black-box");
|
|
let sep = document.querySelector("#sources-toolbar .devtools-separator");
|
|
|
|
is(ppButton.style.display, "none", "The pretty-print button is hidden");
|
|
is(bbButton.style.display, "none", "The blackboxing button is hidden");
|
|
is(sep.style.display, "none", "The separator is hidden");
|
|
closeDebuggerAndFinish(aPanel);
|
|
});
|
|
}
|