Security update for Core, with self-updated composer
[yaffs-website] / web / core / tests / Drupal / Tests / Core / Asset / css_test_files / quotes.css
1 /* Example from https://www.w3.org/TR/CSS2/syndata.html#rule-sets */
2 q[example="public class foo\
3 {\
4     private int x;\
5 \
6     foo(int x) {\
7         this.x = x;\
8     }\
9 \
10 }"] { color: red }
11
12 /* A pseudo selector with essential whitespace wrapped in quotes. */
13 q[style*="quotes: none"] {
14     quotes: none;
15 }
16
17 q[style*='quotes: none'] {
18     quotes: none;
19 }
20
21 q:after {
22     content: ": colon & escaped double \" quotes \".";
23 }
24
25 q:after {
26     content: ' (brackets & escaped single \' quotes \') ';
27 }
28
29 q:after {
30     content: "I'm Quote";
31 }