swc/crates/swc_css_parser/tests/fixture/value/quotes/input.css
2022-02-09 03:25:54 +00:00

48 lines
1.1 KiB
CSS
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

a::before {
content: "This string is demarcated by double quotes.";
content: 'This string is demarcated by single quotes.';
content: "This is a string with \" an escaped double quote.";
content: "This string also has \22 an escaped double quote.";
content: 'This is a string with \' an escaped single quote.';
content: 'This string also has \27 an escaped single quote.';
content: "This is a string with \\ an escaped backslash.";
content: "This string also has \22an escaped double quote.";
content: "This string also has \22 an escaped double quote.";
content: "This string has a \Aline break in it.";
content: "A really long \
awesome string";
content: ";'@ /**/\"";
content: '\'"\\';
content: "a\
b";
content: "a\
b";
content: "a\
b";
content: "a\ b";
content: "a\
\
\
\ \
b";
content: 'a\62 c';
}
a[title="a not s\
o very long title"] {
color: red;
}
a[title="a not so very long title"] {
color: red;
}
div {
family-name: "A;' /**/";
}
.foo {
content: ";'@ /**/\"";
content: '\'"\\';
}