Skip to content

Commit 8bea1de

Browse files
committed
CSS: Return undefined for whitespace-only CSS variable values (#5120)
The spec requires that CSS variable values are trimmed. In browsers that do this - mainly, Safari, but also Firefox if the value only has leading whitespace - we currently return undefined; in other browsers, we return an empty string as the logic to fall back to undefined happens before trimming. This commit adds another explicit callback to `undefined` to have it consistent across browsers. Also, more explicit comments about behaviors we need to work around in various browsers have been added. Closes gh-5120 Ref gh-5106 (cherry picked from commit 7eb0019)
1 parent 9eb47cc commit 8bea1de

File tree

2 files changed

+27
-5
lines changed

2 files changed

+27
-5
lines changed

src/css/curCSS.js

+24-4
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,37 @@ function curCSS( elem, name, computed ) {
2828
// .css('filter') (IE 9 only, trac-12537)
2929
// .css('--customProperty) (gh-3144)
3030
if ( computed ) {
31+
32+
// Support: IE <=9 - 11+
33+
// IE only supports `"float"` in `getPropertyValue`; in computed styles
34+
// it's only available as `"cssFloat"`. We no longer modify properties
35+
// sent to `.css()` apart from camelCasing, so we need to check both.
36+
// Normally, this would create difference in behavior: if
37+
// `getPropertyValue` returns an empty string, the value returned
38+
// by `.css()` would be `undefined`. This is usually the case for
39+
// disconnected elements. However, in IE even disconnected elements
40+
// with no styles return `"none"` for `getPropertyValue( "float" )`
3141
ret = computed.getPropertyValue( name ) || computed[ name ];
3242

33-
// trim whitespace for custom property (issue gh-4926)
34-
if ( isCustomProp && ret !== undefined ) {
43+
if ( isCustomProp && ret ) {
3544

36-
// rtrim treats U+000D CARRIAGE RETURN and U+000C FORM FEED
45+
// Support: Firefox 105+, Chrome <=105+
46+
// Spec requires trimming whitespace for custom properties (gh-4926).
47+
// Firefox only trims leading whitespace. Chrome just collapses
48+
// both leading & trailing whitespace to a single space.
49+
//
50+
// Fall back to `undefined` if empty string returned.
51+
// This collapses a missing definition with property defined
52+
// and set to an empty string but there's no standard API
53+
// allowing us to differentiate them without a performance penalty
54+
// and returning `undefined` aligns with older jQuery.
55+
//
56+
// rtrimCSS treats U+000D CARRIAGE RETURN and U+000C FORM FEED
3757
// as whitespace while CSS does not, but this is not a problem
3858
// because CSS preprocessing replaces them with U+000A LINE FEED
3959
// (which *is* CSS whitespace)
4060
// https://www.w3.org/TR/css-syntax-3/#input-preprocessing
41-
ret = ret.replace( rtrimCSS, "$1" );
61+
ret = ret.replace( rtrimCSS, "$1" ) || undefined;
4262
}
4363

4464
if ( ret === "" && !isAttached( elem ) ) {

test/unit/css.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1760,6 +1760,7 @@ QUnit.test( "Do not throw on frame elements from css method (trac-15098)", funct
17601760
" --prop10:\f\r\n\t val10 \f\r\n\t;\n" +
17611761
" --prop11:\u000C\u000D\u000A\u0009\u0020val11\u0020\u0009\u000A\u000D\u000C;\n" +
17621762
" --prop12:\u000Bval12\u000B;\n" +
1763+
" --space: ;\n" +
17631764
" --empty:;\n" +
17641765
" }\n" +
17651766
"</style>"
@@ -1769,7 +1770,7 @@ QUnit.test( "Do not throw on frame elements from css method (trac-15098)", funct
17691770
$elem = jQuery( "<div>" ).addClass( "test__customProperties" )
17701771
.appendTo( "#qunit-fixture" ),
17711772
webkitOrBlink = /\bsafari\b/i.test( navigator.userAgent ),
1772-
expected = 19;
1773+
expected = 20;
17731774

17741775
if ( webkitOrBlink ) {
17751776
expected -= 2;
@@ -1815,6 +1816,7 @@ QUnit.test( "Do not throw on frame elements from css method (trac-15098)", funct
18151816
assert.equal( $elem.css( "--prop10" ), "val10", "Multiple preceding and following escaped unicode whitespace trimmed" );
18161817
assert.equal( $elem.css( "--prop11" ), "val11", "Multiple preceding and following unicode whitespace trimmed" );
18171818
assert.equal( $elem.css( "--prop12" ), "\u000Bval12\u000B", "Multiple preceding and following non-CSS whitespace reserved" );
1819+
assert.equal( $elem.css( "--space" ), undefined );
18181820
assert.equal( $elem.css( "--empty" ), undefined );
18191821
assert.equal( $elem.css( "--nonexistent" ), undefined );
18201822
} );

0 commit comments

Comments
 (0)