In a following patch, all DevTools moz.build files will use DevToolsModules to install JS modules at a path that corresponds directly to their source tree location. Here we rewrite all require and import calls to match the new location that these files are installed to.
52 lines
1.9 KiB
JavaScript
52 lines
1.9 KiB
JavaScript
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
// Tests that the CubicBezierPresetWidget generates markup.
|
|
|
|
const TEST_URI = "chrome://devtools/content/shared/widgets/cubic-bezier-frame.xhtml";
|
|
const {CubicBezierPresetWidget} =
|
|
require("devtools/client/shared/widgets/CubicBezierWidget");
|
|
const {PRESETS} = require("devtools/client/shared/widgets/CubicBezierPresets");
|
|
|
|
add_task(function*() {
|
|
yield promiseTab("about:blank");
|
|
let [host, win, doc] = yield createHost("bottom", TEST_URI);
|
|
|
|
let container = doc.querySelector("#container");
|
|
let w = new CubicBezierPresetWidget(container);
|
|
|
|
info("Checking that the presets are created in the parent");
|
|
ok(container.querySelector(".preset-pane"),
|
|
"The preset pane has been added");
|
|
|
|
ok(container.querySelector("#preset-categories"),
|
|
"The preset categories have been added");
|
|
let categories = container.querySelectorAll(".category");
|
|
is(categories.length, Object.keys(PRESETS).length,
|
|
"The preset categories have been added");
|
|
Object.keys(PRESETS).forEach(category => {
|
|
ok(container.querySelector("#" + category), `${category} has been added`);
|
|
ok(container.querySelector("#preset-category-" + category),
|
|
`The preset list for ${category} has been added.`);
|
|
});
|
|
|
|
info("Checking that each of the presets and its preview have been added");
|
|
Object.keys(PRESETS).forEach(category => {
|
|
Object.keys(PRESETS[category]).forEach(presetLabel => {
|
|
let preset = container.querySelector("#" + presetLabel);
|
|
ok(preset, `${presetLabel} has been added`);
|
|
ok(preset.querySelector("canvas"),
|
|
`${presetLabel}'s canvas preview has been added`);
|
|
ok(preset.querySelector("p"),
|
|
`${presetLabel}'s label has been added`);
|
|
});
|
|
});
|
|
|
|
w.destroy();
|
|
host.destroy();
|
|
gBrowser.removeCurrentTab();
|
|
});
|