mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
66 lines
2.4 KiB
JavaScript
66 lines
2.4 KiB
JavaScript
/* 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/ */
|
|
|
|
"use strict";
|
|
|
|
// Tests that a curve change in the cubic-bezier tooltip is committed when ENTER
|
|
// is pressed.
|
|
|
|
const TEST_URI = `
|
|
<style type="text/css">
|
|
body {
|
|
transition: top 2s linear;
|
|
}
|
|
</style>
|
|
`;
|
|
|
|
add_task(function* () {
|
|
yield addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
|
|
let {view} = yield openRuleView();
|
|
|
|
info("Getting the bezier swatch element");
|
|
let swatch = getRuleViewProperty(view, "body", "transition").valueSpan
|
|
.querySelector(".ruleview-bezierswatch");
|
|
|
|
yield testPressingEnterCommitsChanges(swatch, view);
|
|
});
|
|
|
|
function* testPressingEnterCommitsChanges(swatch, ruleView) {
|
|
let bezierTooltip = ruleView.tooltips.cubicBezier;
|
|
|
|
info("Showing the tooltip");
|
|
let onBezierWidgetReady = bezierTooltip.once("ready");
|
|
swatch.click();
|
|
yield onBezierWidgetReady;
|
|
|
|
let widget = yield bezierTooltip.widget;
|
|
info("Simulating a change of curve in the widget");
|
|
widget.coordinates = [0.1, 2, 0.9, -1];
|
|
let expected = "cubic-bezier(0.1, 2, 0.9, -1)";
|
|
|
|
yield waitForSuccess(function* () {
|
|
let func = yield getComputedStyleProperty("body", null,
|
|
"transition-timing-function");
|
|
return func === expected;
|
|
}, "Waiting for the change to be previewed on the element");
|
|
|
|
ok(getRuleViewProperty(ruleView, "body", "transition").valueSpan.textContent
|
|
.indexOf("cubic-bezier(") !== -1,
|
|
"The text of the timing-function was updated");
|
|
|
|
info("Sending RETURN key within the tooltip document");
|
|
// Pressing RETURN ends up doing 2 rule-view updates, one for the preview and
|
|
// one for the commit when the tooltip closes.
|
|
let onRuleViewChanged = waitForNEvents(ruleView, "ruleview-changed", 2);
|
|
focusAndSendKey(widget.parent.ownerDocument.defaultView, "RETURN");
|
|
yield onRuleViewChanged;
|
|
|
|
let style = yield getComputedStyleProperty("body", null,
|
|
"transition-timing-function");
|
|
is(style, expected, "The element's timing-function was kept after RETURN");
|
|
|
|
let ruleViewStyle = getRuleViewProperty(ruleView, "body", "transition")
|
|
.valueSpan.textContent.indexOf("cubic-bezier(") !== -1;
|
|
ok(ruleViewStyle, "The text of the timing-function was kept after RETURN");
|
|
}
|