blob: e5843b9e79cc1fba2c85b2a330dc18c17a7ac2ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Test that the style-editor initializes correctly for XUL windows.
"use strict";
waitForExplicitFinish();
const TEST_URL = TEST_BASE + "doc_xulpage.xhtml";
add_task(async function () {
const tab = await addTab(TEST_URL);
const toolbox = await gDevTools.showToolboxForTab(tab, {
toolId: "styleeditor",
});
const panel = toolbox.getCurrentPanel();
ok(
panel,
"The style-editor panel did initialize correctly for the XUL window"
);
});
|