/* 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"; // Regression test for bug 1293616, where editing a selector should // change the relative priority of the rule. const TEST_URI = `
Styled Node
`; add_task(function* () { yield addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI)); let {inspector, view} = yield openRuleView(); yield selectNode(".pickme", inspector); yield testEditSelector(view); }); function* testEditSelector(view) { let ruleEditor = getRuleViewRuleEditor(view, 1); let editor = yield focusEditableField(view, ruleEditor.selectorText); editor.input.value = ".pickme"; let onRuleViewChanged = once(view, "ruleview-changed"); EventUtils.synthesizeKey("VK_RETURN", {}); yield onRuleViewChanged; // Escape the new property editor after editing the selector let onBlur = once(view.styleDocument.activeElement, "blur"); EventUtils.synthesizeKey("VK_ESCAPE", {}, view.styleWindow); yield onBlur; // Get the new rule editor that replaced the original ruleEditor = getRuleViewRuleEditor(view, 1); info("Check that the correct rules are visible"); is(view._elementStyle.rules.length, 4, "Should have 4 rules."); is(ruleEditor.element.getAttribute("unmatched"), "false", "Rule editor is matched."); let props = ruleEditor.rule.textProps; is(props.length, 1, "Rule has correct number of properties"); is(props[0].name, "background", "Found background property"); is(props[0].value, "aqua", "Background property is aqua"); ok(props[0].overridden, "Background property is overridden"); ruleEditor = getRuleViewRuleEditor(view, 2); props = ruleEditor.rule.textProps; is(props.length, 1, "Rule has correct number of properties"); is(props[0].name, "background", "Found background property"); is(props[0].value, "seagreen", "Background property is seagreen"); ok(!props[0].overridden, "Background property is not overridden"); }