/* 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 inline styles. const SEARCH = "color"; const TEST_URI = `
Styled Node
`; add_task(async function () { await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI)); const { inspector, view } = await openRuleView(); await selectNode("#testid", inspector); await testAddTextInFilter(inspector, view); }); async function testAddTextInFilter(inspector, view) { await setSearchFilter(view, SEARCH); info("Check that the correct rules are visible"); is(view.element.children.length, 1, "Should have 1 rule."); const rule = getRuleViewRuleEditor(view, 0).rule; is(rule.selectorText, "element", "First rule is inline element."); ok( rule.textProps[0].editor.container.classList.contains("ruleview-highlight"), "background-color text property is correctly highlighted." ); }