summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/vendor/tubalmartin/cssmin/tests/fixtures/strings.css
blob: 2b0ea7e4774a17dd08046f4a5bc15a44e15fcfce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* Box model hack: http://tantek.com/CSS/Examples/boxmodelhack.html */

#elem {
    width: 100px;
    voice-family: "\"}\"";
    voice-family:inherit;
    width: 200px;
}
html>body #elem {
    width: 200px;
}

/* preserving newlines in strings */
#sel-o {
    content: "on\"ce upon \
a time";
    content: 'once upon \
a ti\'me';
}


/* preserving strings */
.sele {
    content: "\"keep  \"    me";
    something: '\\\' .     . ';
    else: 'empty{}';
    content: "/* test */"; /* <---- this is not a comment, should be be kept */
}