Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Tests that different inherited properties sections are created for rules
// inherited from several elements of the same type.
const TEST_URI = `
<div style="cursor:pointer">
A
<div style="cursor:pointer">
B<a>Cursor</a>
</div>
</div>
`;
add_task(async function () {
await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
const { inspector, view } = await openRuleView();
await selectNode("a", inspector);
await elementStyleInherit(inspector, view);
});
function elementStyleInherit(inspector, view) {
const gutters = view.element.querySelectorAll(".ruleview-header");
is(gutters.length, 2, "Gutters should contains 2 sections");
ok(gutters[0].textContent, "Inherited from div");
ok(gutters[1].textContent, "Inherited from div");
}