swc/css/parser/tests/fixture/value/quotes/input.css
2021-10-10 10:43:11 +09:00

37 lines
993 B
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;
}