/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Tests adding a new rule using the add rule button.
const TEST_URI = `
Styled Node
This is a spanMultiple classesMultiple classes
Empty
Invalid characters in class
Invalid characters in id
`;
const TEST_DATA = [
{ node: "#testid", expected: "#testid" },
{ node: ".testclass2", expected: ".testclass2" },
{ node: ".class1.class2", expected: ".class1.class2" },
{ node: ".class3.class4", expected: ".class3.class4" },
{ node: "p", expected: "p" },
{ node: "h1", expected: ".asd\\@\\@\\@\\@a\\!\\!\\!\\!\\:\\:\\:\\@asd" },
{ node: "h2", expected: "#asd\\@\\@\\@a\\!\\!2a" },
{ node: "circle", expected: "circle" },
];
add_task(async function () {
await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
const { inspector, view } = await openRuleView();
for (const data of TEST_DATA) {
const { node, expected } = data;
await selectNode(node, inspector);
await addNewRuleAndDismissEditor(inspector, view, expected, 1);
}
info(`Check that clicking the "Add Rule" button clears the filter`);
await selectNode("footer", inspector);
is(
view.element.children.length,
1,
"footer only has 1 rule before clicking on the button."
);
await setSearchFilter(view, "thereisnomatch");
const onRuleViewFiltered = view.inspector.once("ruleview-filtered");
await addNewRuleAndDismissEditor(inspector, view, "footer", 1);
await onRuleViewFiltered;
is(view.searchField.value, "", "Search filter was cleared.");
is(view.element.children.length, 2, "A new rule was added");
});