/* 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"; // Tests that the rule view search filter works properly for newly modified // property value. const SEARCH = "100%"; 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("#testid", inspector); info("Enter the test value in the search filter"); yield setSearchFilter(view, SEARCH); info("Focus the height property value"); let ruleEditor = getRuleViewRuleEditor(view, 1); let rule = ruleEditor.rule; let propEditor = rule.textProps[1].editor; yield focusEditableField(view, propEditor.valueSpan); info("Check that the correct rules are visible"); is(view.element.children.length, 2, "Should have 2 rules."); is(rule.selectorText, "#testid", "Second rule is #testid."); ok(rule.textProps[0].editor.container.classList .contains("ruleview-highlight"), "width text property is correctly highlighted."); ok(!propEditor.container.classList.contains("ruleview-highlight"), "height text property is not highlighted."); info("Change the height property value to 100%"); let onRuleViewChanged = view.once("ruleview-changed"); EventUtils.sendString("100%", view.styleWindow); EventUtils.synthesizeKey("VK_RETURN", {}); yield onRuleViewChanged; ok(propEditor.container.classList.contains("ruleview-highlight"), "height text property is correctly highlighted."); });