Skip to content

Commit a1373e2

Browse files
gibson042mgol
authored andcommitted
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 (cherry picked from commit 655c0ed)
1 parent 5566988 commit a1373e2

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
@@ -32,6 +32,12 @@ function curCSS( elem, name, computed ) {
3232

3333
// trim whitespace for custom property (issue gh-4926)
3434
if ( isCustomProp ) {
35+
36+
// rtrim treats U+000D CARRIAGE RETURN and U+000C FORM FEED
37+
// as whitespace while CSS does not, but this is not a problem
38+
// because CSS preprocessing replaces them with U+000A LINE FEED
39+
// (which *is* CSS whitespace)
40+
// https://www.w3.org/TR/css-syntax-3/#input-preprocessing
3541
ret = ret.replace( rtrimCSS, "$1" );
3642
}
3743

0 commit comments

Comments
 (0)