Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Test that the rule-view behaves correctly when entering mutliple and/or
// unfinished properties/values in inplace-editors
const TEST_URI = "<div>Test Element</div>";
add_task(async function () {
await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
const { inspector, view } = await openRuleView();
// Turn off throttling, which can cause intermittents. Throttling is used by
// the TextPropertyEditor.
view.debounce = () => {};
await selectNode("div", inspector);
const ruleEditor = getRuleViewRuleEditor(view, 0);
// Note that we wait for a markup mutation here because this new rule will end
// up creating a style attribute on the node shown in the markup-view.
// (we also wait for the rule-view to refresh).
let onMutation = inspector.once("markupmutation");
let onRuleViewChanged = view.once("ruleview-changed");
await createNewRuleViewProperty(ruleEditor, "width: 100px; heig");
await onMutation;
await onRuleViewChanged;
is(
ruleEditor.rule.textProps.length,
2,
"Should have created a new text property."
);
is(
ruleEditor.propertyList.children.length,
2,
"Should have created a property editor."
);
// Value is focused, lets add multiple rules here and make sure they get added
onMutation = inspector.once("markupmutation");
onRuleViewChanged = view.once("ruleview-changed");
const valueEditor = ruleEditor.propertyList.children[1].querySelector(
".styleinspector-propertyeditor"
);
valueEditor.value = "10px;background:orangered;color: black;";
EventUtils.synthesizeKey("VK_RETURN", {}, view.styleWindow);
await onMutation;
await onRuleViewChanged;
is(
ruleEditor.rule.textProps.length,
4,
"Should have added the changed value."
);
is(
ruleEditor.propertyList.children.length,
5,
"Should have added the changed value editor."
);
is(
getTextProperty(view, 0, { width: "100px" }).name,
"width",
"Should have correct property name"
);
is(
getTextProperty(view, 0, { width: "100px" }).value,
"100px",
"Should have correct property value"
);
is(
getTextProperty(view, 0, { heig: "10px" }).name,
"heig",
"Should have correct property name"
);
is(
getTextProperty(view, 0, { heig: "10px" }).value,
"10px",
"Should have correct property value"
);
is(
getTextProperty(view, 0, { background: "orangered" }).name,
"background",
"Should have correct property name"
);
is(
getTextProperty(view, 0, { background: "orangered" }).value,
"orangered",
"Should have correct property value"
);
is(
getTextProperty(view, 0, { color: "black" }).name,
"color",
"Should have correct property name"
);
is(
getTextProperty(view, 0, { color: "black" }).value,
"black",
"Should have correct property value"
);
});