Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
/* Any copyright is dedicated to the Public Domain.
"use strict";
// Test that the rule-view properly handles @starting-style rules.
const TEST_URI = `
<style>
@property --my-registered-color {
syntax: "<color>";
inherits: true;
initial-value: blue;
}
@property --my-unset-registered-color {
syntax: "<color>";
inherits: true;
initial-value: lavender;
}
h1, [data-test="top-level"] {
color: tomato;
transition: all 1s;
@starting-style {
color: gold;
}
}
@starting-style {
body, [data-test="in-starting-style"] {
color: navy;
}
@layer {
body, [data-test="in-starting-style-layer"] {
color: hotpink;
}
}
h1, [data-test="in-starting-style"] {
background-color: salmon;
}
main, [data-test="in-starting-style"] {
--my-color: black !important;
--my-overridden-color: black;
--my-registered-color: black !important;
--check-my-color: var(--my-color);
--check-my-overridden-color: var(--my-overridden-color);
--check-my-registered-color: var(--my-registered-color);
--check-my-unset-registered-color: var(--my-unset-registered-color);
background-color: dodgerblue;
padding-top: 1px;
margin-top: 1px !important;
outline-color: dodgerblue;
}
@layer {
main, [data-test="in-starting-style-layer"] {
background-color: forestgreen;
padding-top: 4px;
margin-top: 4px;
outline-color: forestgreen !important;
}
}
@layer {
main, [data-test="in-starting-style-layer-2"] {
background-color: cyan;
padding-top: 5px;
margin-top: 5px;
outline-color: cyan !important;
}
}
}
main, [data-test="top-level"] {
--my-color: white;
--my-overridden-color: white !important;
--my-registered-color: white;
--empty-start: 1px;
--check-my-overridden-color: var(--my-overridden-color);
--check-my-registered-color: var(--my-registered-color);
--check-empty-start: var(--empty-start);
color: var(--my-color);
background-color: firebrick;
padding-top: 2px !important;
margin-top: 2px;
transition: all 1s 1000s;
outline-color: firebrick;
outline-width: 5px;
outline-style: solid;
outline-offset: 10px;
@starting-style {
--empty-start: ;
background-color: goldenrod;
padding-top: 3px;
margin-top: 3px;
outline-color: goldenrod;
}
}
</style>
<h1>Hello @starting-style!</h1>
<main>Testing override</main>`;
add_task(async function () {
await pushPref("layout.css.starting-style-at-rules.enabled", true);
await addTab(
encodeURIComponent(TEST_URI)
);
const { inspector, view } = await openRuleView();
await assertRules("body", [
{ selector: `element`, ancestorRulesData: null },
{
selector: `body, [data-test="in-starting-style"]`,
ancestorRulesData: ["@starting-style {"],
},
{
selector: `body, [data-test="in-starting-style-layer"]`,
ancestorRulesData: ["@starting-style {", " @layer {"],
},
]);
await assertRules("h1", [
{ selector: `element`, ancestorRulesData: null },
{
selector: `h1, [data-test="in-starting-style"]`,
ancestorRulesData: ["@starting-style {"],
},
{
selector: ``,
ancestorRulesData: [
`h1, [data-test="top-level"] {`,
" @starting-style {",
],
},
{
selector: `h1, [data-test="top-level"]`,
ancestorRulesData: null,
},
]);
await assertRules("main", [
{ selector: `element`, ancestorRulesData: null },
{
selector: ``,
ancestorRulesData: [
`main, [data-test="top-level"] {`,
" @starting-style {",
],
},
{
selector: `main, [data-test="top-level"]`,
ancestorRulesData: null,
},
{
selector: `main, [data-test="in-starting-style"]`,
ancestorRulesData: ["@starting-style {"],
},
{
selector: `main, [data-test="in-starting-style-layer-2"]`,
ancestorRulesData: [`@starting-style {`, " @layer {"],
},
{
selector: `main, [data-test="in-starting-style-layer"]`,
ancestorRulesData: [`@starting-style {`, " @layer {"],
},
]);
await selectNode("main", inspector);
info("Check that we're handling overridden properties correctly");
//Check background-color
ok(
!isPropertyOverridden(view, 1, { "background-color": "goldenrod" }),
"background-color value in last starting-style rule is not overridden"
);
ok(
!isPropertyOverridden(view, 2, { "background-color": "firebrick" }),
"background-color value in top level rule is not overridden, even if the property is also set in a starting style rule"
);
ok(
isPropertyOverridden(view, 3, { "background-color": "dodgerblue" }),
"background-color value in top-level starting style rule is overridden"
);
ok(
isPropertyOverridden(view, 4, { "background-color": "cyan" }),
"background-color value in second layer in starting style rule is overridden"
);
ok(
isPropertyOverridden(view, 5, { "background-color": "forestgreen" }),
"background-color value in first layer in starting style rule is overridden"
);
//Check padding-top
ok(
isPropertyOverridden(view, 1, { "padding-top": "3px" }),
"padding-top value in last starting-style rule is overridden by the !important set on the top level rule"
);
ok(
!isPropertyOverridden(view, 2, { "padding-top": "2px" }),
"padding-top value in top level rule is not overridden"
);
ok(
isPropertyOverridden(view, 3, { "padding-top": "1px" }),
"padding-top value in top-level starting style rule is overridden"
);
ok(
isPropertyOverridden(view, 4, { "padding-top": "5px" }),
"padding-top value in second layer in starting style rule is overridden"
);
ok(
isPropertyOverridden(view, 5, { "padding-top": "4px" }),
"padding-top value in first layer in starting style rule is overridden"
);
//Check margin-top
ok(
isPropertyOverridden(view, 1, { "margin-top": "3px" }),
"margin-top value in last starting-style rule is overridden by the !important set on another starting-style rule"
);
ok(
!isPropertyOverridden(view, 2, { "margin-top": "2px" }),
"margin-top value in top level rule is not overridden"
);
ok(
!isPropertyOverridden(view, 3, { "margin-top": "1px" }),
"margin-top value in top-level starting style rule is not overridden, since it's declared with !important"
);
ok(
isPropertyOverridden(view, 4, { "margin-top": "5px" }),
"margin-top value in second layer in starting style rule is overridden"
);
ok(
isPropertyOverridden(view, 5, { "margin-top": "4px" }),
"margin-top value in first layer in starting style rule is overridden"
);
//Check outline-color
ok(
isPropertyOverridden(view, 1, { "outline-color": "goldenrod" }),
"outline-color value in last starting-style rule is overridden by the !important set on another startint-style rule"
);
ok(
!isPropertyOverridden(view, 2, { "outline-color": "firebrick" }),
"outline-color value in top level rule is not overridden"
);
ok(
isPropertyOverridden(view, 3, { "outline-color": "dodgerblue" }),
"outline-color value in top-level starting style rule is overridden"
);
ok(
isPropertyOverridden(view, 4, { "outline-color": "cyan" }),
"outline-color value in second layer in starting style rule is overridden even if it was declared with !important"
);
ok(
!isPropertyOverridden(view, 5, { "outline-color": "forestgreen" }),
"outline-color value in first layer in starting style rule is not overridden as it's declared with !important"
);
info(
"Check that CSS variables set in starting-style are not impacting the var() tooltip"
);
ok(
!isPropertyOverridden(view, 2, { "--my-color": "white" }),
"--my-color value in top level rule is not overridden"
);
info(
"Check var() in regular rule for a variable set in both regular and starting-style rule"
);
await assertVariableTooltipForProperty(
view,
`main, [data-test="top-level"]`,
"color",
{
header:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:white">' +
'</span>' +
'<span class="ruleview-color">white</span>' +
'</span>',
// Computed value isn't displayed when it's the same as we put in the header
computed: null,
// The starting-style value is displayed in the tooltip
startingStyle:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:black">' +
'</span>' +
'<span class="ruleview-color">black</span>' +
'</span>',
}
);
info(
"Check var() in starting-style rule for a variable set in both regular and starting-style rule"
);
await assertVariableTooltipForProperty(
view,
`main, [data-test="in-starting-style"]`,
"--check-my-color",
{
// The displayed value is the one set in the starting-style rule
header:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:black">' +
'</span>' +
'<span class="ruleview-color">black</span>' +
'</span>',
// Computed value isn't displayed in starting-style rule
computed: null,
// The starting-style section is not displayed when hovering starting-style rule
startingStyle: null,
}
);
info(
"Check var() in both regular and starting-style rule for a variable overridden in regular rule"
);
ok(
isPropertyOverridden(view, 3, { "--my-overridden-color": "black" }),
"--my-overridden-color in top-level starting style rule is overridden"
);
await assertVariableTooltipForProperty(
view,
`main, [data-test="top-level"]`,
"--check-my-overridden-color",
{
header:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:white">' +
'</span>' +
'<span class="ruleview-color">white</span>' +
'</span>',
computed:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:white">' +
'</span>' +
'<span class="ruleview-color">white</span>' +
'</span>',
// The starting-style rule is overridden, so we don't show a starting-style section in the tooltip
startingStyle: null,
}
);
await assertVariableTooltipForProperty(
view,
`main, [data-test="in-starting-style"]`,
"--check-my-overridden-color",
{
// the value is the one from the regular rule, not the one from the starting-style rule
header:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:white">' +
'</span>' +
'<span class="ruleview-color">white</span>' +
'</span>',
// Computed value isn't displayed in starting-style rule
computed: null,
startingStyle: null,
}
);
info(
"Check var() for a registered property in both regular and starting-style rule"
);
await assertVariableTooltipForProperty(
view,
`main, [data-test="top-level"]`,
"--check-my-registered-color",
{
header:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:white">' +
'</span>' +
'<span class="ruleview-color">white</span>' +
'</span>',
computed:
// prettier-ignore
'<span xmlns="http://www.w3.org/1999/xhtml" data-color="rgb(255, 255, 255)" class="color-swatch-container">' +
'<span class="inspector-swatch inspector-colorswatch" style="background-color:rgb(255, 255, 255)">' +
'</span>' +
'<span class="ruleview-color">rgb(255, 255, 255)</span>' +
'</span>',
// The starting-style value is displayed in the tooltip
startingStyle:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:black">' +
'</span>' +
'<span class="ruleview-color">black</span>' +
'</span>',
// registered property data is displayed
registeredProperty: {
syntax: `"<color>"`,
inherits: "true",
"initial-value":
// prettier-ignore
`<span ` +
`class="inspector-swatch inspector-colorswatch" ` +
`style="background-color:blue">` +
`</span>` +
`<span class="ruleview-color">blue</span>` +
`</span>`,
},
}
);
await assertVariableTooltipForProperty(
view,
`main, [data-test="in-starting-style"]`,
"--check-my-registered-color",
{
// The displayed value is the one set in the starting-style rule
header:
// prettier-ignore
'<span class="inspector-swatch inspector-colorswatch" style="background-color:black">' +
'</span>' +
'<span class="ruleview-color">black</span>' +
'</span>',
// Computed value isn't displayed in starting-style rule
computed: null,
// The starting-style section is not displayed when hovering starting-style rule
startingStyle: null,
// registered property data is displayed
registeredProperty: {
syntax: `"<color>"`,
inherits: "true",
"initial-value":
// prettier-ignore
`<span ` +
`class="inspector-swatch inspector-colorswatch" ` +
`style="background-color:blue">` +
`</span>` +
`<span class="ruleview-color">blue</span>` +
`</span>`,
},
}
);
info("Check var() for a unset registered property in starting-style rule");
await assertVariableTooltipForProperty(
view,
`main, [data-test="in-starting-style"]`,
"--check-my-unset-registered-color",
{
// The displayed value is the registered property initial value
header:
// prettier-ignore
'<span xmlns="http://www.w3.org/1999/xhtml" data-color="lavender" class="color-swatch-container">' +
'<span class="inspector-swatch inspector-colorswatch" style="background-color:lavender">' +
'</span>' +
'<span class="ruleview-color">lavender</span>' +
'</span>',
// The starting-style section is not displayed when hovering starting-style rule
startingStyle: null,
// registered property data is displayed
registeredProperty: {
syntax: `"<color>"`,
inherits: "true",
"initial-value":
// prettier-ignore
'<span xmlns="http://www.w3.org/1999/xhtml" data-color="lavender" class="color-swatch-container">' +
'<span class="inspector-swatch inspector-colorswatch" style="background-color:lavender">' +
'</span>' +
'<span class="ruleview-color">lavender</span>' +
'</span>',
},
}
);
info("Check var() for a empty variable in regular rule");
await assertVariableTooltipForProperty(
view,
`main, [data-test="top-level"]`,
"--check-empty-start",
{
header: "1px",
// The starting-style value is displayed in the tooltip
startingStyle: "<empty>",
startingStyleClasses: ["empty-css-variable"],
}
);
async function assertRules(nodeSelector, expectedRules) {
await selectNode(nodeSelector, inspector);
const rulesInView = Array.from(
// don't retrieve @property rules
view.element.querySelectorAll(".ruleview-rule:not([data-name])")
);
is(
rulesInView.length,
expectedRules.length,
`[${nodeSelector}] All expected rules are displayed`
);
for (let i = 0; i < expectedRules.length; i++) {
const expectedRule = expectedRules[i];
info(`[${nodeSelector}] Checking rule #${i}: ${expectedRule.selector}`);
const selector = rulesInView[i].querySelector(
".ruleview-selectors-container"
)?.innerText;
is(
selector,
expectedRule.selector,
`[${nodeSelector}] Expected selector for rule #${i}`
);
const isInherited = rulesInView[i].matches(
".ruleview-header-inherited + .ruleview-rule"
);
if (expectedRule.inherited) {
ok(isInherited, `[${nodeSelector}] rule #${i} is inherited`);
} else {
ok(!isInherited, `[${nodeSelector}] rule #${i} is not inherited`);
}
if (expectedRule.ancestorRulesData == null) {
is(
getRuleViewAncestorRulesDataElementByIndex(view, i),
null,
`[${nodeSelector}] No ancestor rules data displayed for ${selector}`
);
} else {
is(
getRuleViewAncestorRulesDataTextByIndex(view, i),
expectedRule.ancestorRulesData.join("\n"),
`[${nodeSelector}] Expected ancestor rules data displayed for ${selector}`
);
}
}
}
});
function isPropertyOverridden(view, ruleIndex, property) {
return getTextProperty(
view,
ruleIndex,
property
).editor.element.classList.contains("ruleview-overridden");
}