Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Test to ensure that CSSOM doesn't make the rule view blow up.
const TEST_URI = URL_ROOT + "doc_cssom.html";
add_task(async function () {
await addTab(TEST_URI);
const { inspector, view } = await openRuleView();
await selectNode("#target", inspector);
const elementStyle = view._elementStyle;
let rule;
rule = elementStyle.rules[1];
is(rule.textProps.length, 1, "rule 1 should have one property");
is(rule.textProps[0].name, "color", "the property should be 'color'");
is(rule.ruleLine, 1, "the property has no source line");
rule = elementStyle.rules[2];
is(rule.textProps.length, 1, "rule 2 should have one property");
is(
rule.textProps[0].name,
"font-weight",
"the property should be 'font-weight'"
);
is(rule.ruleLine, 2, "the property has no source line");
});