Skip to content

Commit c0db6d7

Browse files
anderskmgol
authored andcommitted
CSS: Don’t trim whitespace of undefined custom property
Fixes gh-5105 Closes gh-5106 Signed-off-by: Anders Kaseorg <[email protected]> (cherry picked from commit ed306c0)
1 parent f14064c commit c0db6d7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/css/curCSS.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function curCSS( elem, name, computed ) {
3131
ret = computed.getPropertyValue( name ) || computed[ name ];
3232

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

3636
// rtrim treats U+000D CARRIAGE RETURN and U+000C FORM FEED
3737
// as whitespace while CSS does not, but this is not a problem

test/unit/css.js

+4-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+
" --empty:;\n" +
17631764
" }\n" +
17641765
"</style>"
17651766
);
@@ -1768,7 +1769,7 @@ QUnit.test( "Do not throw on frame elements from css method (trac-15098)", funct
17681769
$elem = jQuery( "<div>" ).addClass( "test__customProperties" )
17691770
.appendTo( "#qunit-fixture" ),
17701771
webkitOrBlink = /\bsafari\b/i.test( navigator.userAgent ),
1771-
expected = 17;
1772+
expected = 19;
17721773

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

18191822
QUnit[ supportsCssVars ? "test" : "skip" ]( "Don't append px to CSS vars", function( assert ) {

0 commit comments

Comments
 (0)