-
-
Notifications
You must be signed in to change notification settings - Fork 508
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
805d6d5
commit a0c6e2d
Showing
8 changed files
with
462 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
crates/biome_css_formatter/tests/specs/css/quote_style/normalize_quotes.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[attr="double"] { | ||
background: url("/double/quoted/path"); | ||
} | ||
|
||
[attr='single'] { | ||
background: url('/single/quoted/path'); | ||
} | ||
|
||
[attr=no-quotes] { | ||
/* this url-token should stay unquoted */ | ||
background: url(/unquoted/path); | ||
} | ||
|
||
[attr=\eescaped] { | ||
} | ||
|
||
div { | ||
width: 0\eestays-unquoted; | ||
--\eeunquoted: green; | ||
color: var(--\eeunquoted); | ||
} |
Oops, something went wrong.