Skip to content

Commit d6f74a7

Browse files
schenney-chromiumChromium LUCI CQ
authored and
Chromium LUCI CQ
committed
Allow custom properties in highlight pseudos
This is a workaround for the use case of custom properties defined and used in the same rule for ::selection pseudos. The use case arises from tooling, particularly Tailwind CSS, and it caused a stable regression when Highlight Inheritance was launched. This change restores the original behavior in that highlight pseudos can use custom properties defined in the highlight itself. The custom properties are not inherited through the highlight inheritance chain, so this change does not result in confusion about the source of custom properties when Highlight Inheritance is enabled: the properties still come from the originating element and then the highlight pseudo itself, never it's parent highlight. CSS Spec PR: w3c/csswg-drafts#11528 Fixed: 381125910 Change-Id: I0f89e6b8ad96d097ce1e2b39c179a270d472991f Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6053860 Reviewed-by: Anders Hartvoll Ruud <[email protected]> Commit-Queue: Stephen Chenney <[email protected]> Cr-Commit-Position: refs/heads/main@{#1413271}
1 parent 76ec390 commit d6f74a7

File tree

9 files changed

+63
-38
lines changed

9 files changed

+63
-38
lines changed

third_party/blink/renderer/core/css/properties/longhands/custom_property.cc

+3-9
Original file line numberDiff line numberDiff line change
@@ -122,15 +122,9 @@ void CustomProperty::ApplyValue(StyleResolverState& state,
122122
ComputedStyleBuilder& builder = state.StyleBuilder();
123123
DCHECK(!value.IsCSSWideKeyword());
124124

125-
// Highlight Pseudos do not allow custom property definitions.
126-
// Properties are copied from the originating element when the
127-
// style is created.
128-
if (state.UsesHighlightPseudoInheritance()) {
129-
if (builder.StyleType() == kPseudoIdSelection) {
130-
UseCounter::Count(state.GetDocument(),
131-
WebFeature::kSelectionCustomProperty);
132-
}
133-
return;
125+
if (builder.StyleType() == kPseudoIdSelection) {
126+
UseCounter::Count(state.GetDocument(),
127+
WebFeature::kSelectionCustomProperty);
134128
}
135129

136130
builder.SetHasVariableDeclaration();

third_party/blink/renderer/core/css/resolver/style_resolver.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -1402,10 +1402,10 @@ void StyleResolver::InitStyle(Element& element,
14021402

14031403
// Highlight Pseudos may use var() references but those must be resolved
14041404
// against the originating element. Share the variables from the originating
1405-
// style.
1406-
state.StyleBuilder().CopyInheritedVariablesFrom(
1405+
// style and remove any from the highlight chain.
1406+
state.StyleBuilder().SetInheritedVariablesFrom(
14071407
state.OriginatingElementStyle());
1408-
state.StyleBuilder().CopyNonInheritedVariablesFrom(
1408+
state.StyleBuilder().SetNonInheritedVariablesFrom(
14091409
state.OriginatingElementStyle());
14101410
} else {
14111411
state.CreateNewStyle(

third_party/blink/renderer/core/highlight/highlight_style_utils_test.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -349,8 +349,8 @@ TEST_F(HighlightStyleUtilsTest, CustomPropertyInheritance) {
349349
:root {
350350
--root-color: green;
351351
}
352-
::selection {
353-
/* This rule should not apply */
352+
:root::selection {
353+
/* Should not affect div::selection */
354354
--selection-color: blue;
355355
}
356356
div::selection {

third_party/blink/renderer/core/style/computed_style.cc

+7-11
Original file line numberDiff line numberDiff line change
@@ -3040,21 +3040,17 @@ ComputedStyleBuilder::MutableNonInheritedVariables() {
30403040
return *variables;
30413041
}
30423042

3043-
void ComputedStyleBuilder::CopyInheritedVariablesFrom(
3043+
void ComputedStyleBuilder::SetInheritedVariablesFrom(
30443044
const ComputedStyle* style) {
3045-
if (style->InheritedVariablesInternal()) {
3046-
has_own_inherited_variables_ = false;
3047-
MutableInheritedVariablesInternal() = style->InheritedVariablesInternal();
3048-
}
3045+
MutableInheritedVariablesInternal() = style->InheritedVariablesInternal();
3046+
has_own_inherited_variables_ = false;
30493047
}
30503048

3051-
void ComputedStyleBuilder::CopyNonInheritedVariablesFrom(
3049+
void ComputedStyleBuilder::SetNonInheritedVariablesFrom(
30523050
const ComputedStyle* style) {
3053-
if (style->NonInheritedVariablesInternal()) {
3054-
has_own_non_inherited_variables_ = false;
3055-
MutableNonInheritedVariablesInternal() =
3056-
style->NonInheritedVariablesInternal();
3057-
}
3051+
MutableNonInheritedVariablesInternal() =
3052+
style->NonInheritedVariablesInternal();
3053+
has_own_non_inherited_variables_ = false;
30583054
}
30593055

30603056
STATIC_ASSERT_ENUM(cc::OverscrollBehavior::Type::kAuto,

third_party/blink/renderer/core/style/computed_style.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3326,8 +3326,8 @@ class ComputedStyleBuilder final : public ComputedStyleBuilderBase {
33263326
bool is_inherited_property) const;
33273327
CORE_EXPORT StyleInheritedVariables& MutableInheritedVariables();
33283328
CORE_EXPORT StyleNonInheritedVariables& MutableNonInheritedVariables();
3329-
void CopyInheritedVariablesFrom(const ComputedStyle*);
3330-
void CopyNonInheritedVariablesFrom(const ComputedStyle*);
3329+
void SetInheritedVariablesFrom(const ComputedStyle*);
3330+
void SetNonInheritedVariablesFrom(const ComputedStyle*);
33313331
CORE_EXPORT void SetVariableData(const AtomicString& name,
33323332
CSSVariableData* value,
33333333
bool is_inherited_property) {

third_party/blink/web_tests/external/wpt/css/css-pseudo/highlight-cascade/highlight-cascade-008.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
--background-color: green;
1212
--decoration-color: yellow;
1313
}
14-
::selection {
14+
:root::selection {
1515
--background-color: cyan;
1616
--decoration-color: magenta;
1717
}
@@ -22,10 +22,10 @@
2222
text-decoration-color: var(--decoration-color, red);
2323
}
2424
span {
25-
--background-color: blue;
25+
--background-color: purple;
2626
}
2727
span::selection {
28-
--background-color: purple;
28+
--background-color: blue;
2929
background-color: var(--background-color, red);
3030
}
3131
</style>

third_party/blink/web_tests/external/wpt/css/css-pseudo/highlight-cascade/highlight-cascade-009.html

+8-5
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
<link rel="author" title="Stephen Chenney" href="mailto:[email protected]">
55
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#highlight-cascade">
66
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/6641">
7-
<meta name="assert" content="This test verifies that custom properties used in highlight pseudos are taken from the originating element.">
7+
<meta name="assert" content="This test verifies that custom properties used in highlight pseudos are taken from the highlight and originating element.">
88
<script src="../support/selections.js"></script>
99
<link rel="stylesheet" href="../support/highlights.css">
1010
<script src="/resources/testharness.js"></script>
1111
<script src="/resources/testharnessreport.js"></script>
1212
<style>
13-
:root {
13+
body {
1414
--background-color: green;
1515
--decoration-color: green;
1616
}
17-
::selection {
17+
body::selection {
1818
--decoration-color: purple;
1919
}
2020
div::selection {
@@ -28,14 +28,17 @@
2828
<script>
2929
selectNodeContents(document.querySelector("body"));
3030

31+
const div_style = getComputedStyle(document.querySelector("div"));
3132
const body_selection = getComputedStyle(document.querySelector("body"), "::selection");
3233
const div_selection = getComputedStyle(document.querySelector("div"), "::selection");
3334
test(() => void assert_equals(body_selection.getPropertyValue("--background-color"), "green"),
3435
"body ::selection uses the originating custom property");
35-
test(() => void assert_equals(body_selection.getPropertyValue("--decoration-color"), "green"),
36+
test(() => void assert_equals(body_selection.getPropertyValue("--decoration-color"), "purple"),
3637
"body ::selection does not use its own custom property");
3738
test(() => void assert_equals(div_selection.getPropertyValue("--decoration-color"), "green"),
3839
"div::selection uses the originating element custom property");
39-
test(() => void assert_equals(div_selection.getPropertyValue("--background-color"), "green"),
40+
test(() => void assert_equals(div_selection.getPropertyValue("--background-color"), "blue"),
4041
"div::selection does not use its own custom property");
42+
test(() => void assert_equals(div_style.getPropertyValue("--background-color"), "green"),
43+
"div::selection properties are not present on the originating element");
4144
</script>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!doctype html>
2+
<meta charset="utf-8">
3+
<title>CSS Pseudo-Elements Test: highlight cascade: inheritance of custom properties</title>
4+
<link rel="author" title="Stephen Chenney" href="mailto:[email protected]">
5+
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#highlight-cascade">
6+
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/6641">
7+
<meta name="assert" content="This test verifies that custom properties used in highlight pseudos are taken from the highlight and originating element.">
8+
<script src="../support/selections.js"></script>
9+
<link rel="stylesheet" href="../support/highlights.css">
10+
<script src="/resources/testharness.js"></script>
11+
<script src="/resources/testharnessreport.js"></script>
12+
<style>
13+
:root::selection {
14+
--background-color: red;
15+
}
16+
div::selection {
17+
background-color: var(--background-color, green);
18+
}
19+
</style>
20+
<body>
21+
<div>Some text</div>
22+
</body>
23+
<script>
24+
selectNodeContents(document.querySelector("body"));
25+
26+
const div_selection = getComputedStyle(document.querySelector("div"), "::selection");
27+
test(() => void assert_equals(div_selection.backgroundColor, "rgb(0, 128, 0)"),
28+
"div::selection does not inherit custom properties from the highlight parent");
29+
test(() => void assert_equals(div_selection.getPropertyValue("--background-color"), ""),
30+
"--background-color has no computed value on div::selection");
31+
</script>

third_party/blink/web_tests/external/wpt/css/css-pseudo/highlight-styling-001.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@
44
<link rel="author" title="Delan Azabani" href="mailto:[email protected]">
55
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#highlight-styling">
66
<link rel="match" href="highlight-styling-001-ref.html">
7-
<meta name="assert" value="This test verifies that ::selection styles cannot set custom properties.">
7+
<meta name="assert" value="This test verifies that ::selection styles can set custom properties and they over-ride the originating element.">
88
<script src="support/selections.js"></script>
99
<link rel="stylesheet" href="support/highlights.css">
1010
<style>
1111
main {
12+
--x: red;
1213
font-size: 7em;
1314
margin: 0.5em;
1415
}
1516
main::selection {
16-
--x: red;
17+
--x: green;
1718
color: white;
18-
background-color: var(--x, green);
19+
background-color: var(--x, blue);
1920
}
2021
</style>
2122
<p>Test passes if the text below is white on green.

0 commit comments

Comments
 (0)