File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -10425,5 +10425,20 @@ mod tests {
1042510425 initial-value: none;
1042610426 }
1042710427 "# } ) ;
10428+
10429+ minify_test ( r#"
10430+ @property --property-name {
10431+ syntax: '<color>#';
10432+ inherits: false;
10433+ initial-value: yellow, blue;
10434+ }
10435+ "# , "@property --property-name{syntax:\" <color>#\" ;inherits:false;initial-value:#ff0,#00f}" ) ;
10436+ minify_test ( r#"
10437+ @property --property-name {
10438+ syntax: '<color>+';
10439+ inherits: false;
10440+ initial-value: yellow blue;
10441+ }
10442+ "# , "@property --property-name{syntax:\" <color>+\" ;inherits:false;initial-value:#ff0 #00f}" ) ;
1042810443 }
1042910444}
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ use crate::error::{ParserError, PrinterError};
44use crate :: traits:: { Parse , ToCss } ;
55use crate :: printer:: Printer ;
66use crate :: values:: number:: serialize_integer;
7-
87use super :: string:: CowArcStr ;
98
109/// https://drafts.css-houdini.org/css-properties-values-api/#syntax-strings
You can’t perform that action at this time.
0 commit comments