Skip to content

Commit 655c0ed

Browse files
authored
CSS: Justify use of rtrim on CSS property values
CSS does not acknowledge carriage return or form feed characters as whitespace but it does replace them with whitespace, making it acceptable to use `rtrim`. Closes gh-4956
1 parent 5f4d449 commit 655c0ed

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/css/curCSS.js

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ function curCSS( elem, name, computed ) {
1616

1717
// trim whitespace for custom property (issue gh-4926)
1818
if ( isCustomProp ) {
19+
20+
// rtrim treats U+000D CARRIAGE RETURN and U+000C FORM FEED
21+
// as whitespace while CSS does not, but this is not a problem
22+
// because CSS preprocessing replaces them with U+000A LINE FEED
23+
// (which *is* CSS whitespace)
24+
// https://www.w3.org/TR/css-syntax-3/#input-preprocessing
1925
ret = ret.replace( rtrim, "$1" );
2026
}
2127

0 commit comments

Comments
 (0)