mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-07-20 22:19:49 +00:00
62 lines
2.1 KiB
JavaScript
62 lines
2.1 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";
|
|
|
|
// Test that a curve change in the cubic-bezier tooltip is committed when ENTER
|
|
// is pressed
|
|
|
|
const PAGE_CONTENT = [
|
|
'<style type="text/css">',
|
|
' body {',
|
|
' transition: top 2s linear;',
|
|
' }',
|
|
'</style>'
|
|
].join("\n");
|
|
|
|
add_task(function*() {
|
|
yield addTab("data:text/html;charset=utf-8,rule view cubic-bezier tooltip test");
|
|
content.document.body.innerHTML = PAGE_CONTENT;
|
|
let {toolbox, inspector, 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 onShown = bezierTooltip.tooltip.once("shown");
|
|
swatch.click();
|
|
yield onShown;
|
|
|
|
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(() => {
|
|
return content.getComputedStyle(content.document.body).transitionTimingFunction === 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");
|
|
let onHidden = bezierTooltip.tooltip.once("hidden");
|
|
EventUtils.sendKey("RETURN", widget.parent.ownerDocument.defaultView);
|
|
yield onHidden;
|
|
|
|
is(content.getComputedStyle(content.document.body).transitionTimingFunction,
|
|
expected, "The element's timing-function was kept after RETURN");
|
|
ok(getRuleViewProperty(ruleView, "body", "transition").valueSpan.textContent
|
|
.indexOf("cubic-bezier(") !== -1,
|
|
"The text of the timing-function was kept after RETURN");
|
|
}
|