Mypal/devtools/client/inspector/rules/test/browser_rules_add-property-and-reselect.js
2021-02-04 16:48:36 +02:00

44 lines
1.3 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Tests that adding properties to rules work and reselecting the element still
// show them.
const TEST_URI = URL_ROOT + "doc_content_stylesheet.html";
add_task(function* () {
yield addTab(TEST_URI);
let {inspector, view} = yield openRuleView();
yield selectNode("#target", inspector);
info("Setting a font-weight property on all rules");
yield setPropertyOnAllRules(view);
info("Reselecting the element");
yield selectNode("body", inspector);
yield selectNode("#target", inspector);
checkPropertyOnAllRules(view);
});
function* setPropertyOnAllRules(view) {
// Wait for the properties to be properly created on the backend and for the
// view to be updated.
let onRefreshed = view.once("ruleview-refreshed");
for (let rule of view._elementStyle.rules) {
rule.editor.addProperty("font-weight", "bold", "", true);
}
yield onRefreshed;
}
function checkPropertyOnAllRules(view) {
for (let rule of view._elementStyle.rules) {
let lastRule = rule.textProps[rule.textProps.length - 1];
is(lastRule.name, "font-weight", "Last rule name is font-weight");
is(lastRule.value, "bold", "Last rule value is bold");
}
}