blob: 2fb9f9ddb43fab90f43405eb9eaefe7e179287db (
plain)
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
|
/* -*- 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);
});
}
|