61ccc8feb61278859f0592cf30c6bd5d638cdb08
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / values / quoted-strings.csst
1 --TEST--
2 Ensure that quoted strings are left unchanged.
3 --CSS--
4 a:after {
5 content: "This is a typical string with words, commas, and a period.";
6 }
7
8 b:after {
9 content: "This string has CSS-like content: foo { color: rgb(0, 0, 0); }.";
10 }
11
12 c:after {
13 content: 'This string uses single quotes, not double (").';
14 }
15 --EXPECT--
16 array (
17 'a:after' =>
18 array (
19 'content' => '"This is a typical string with words, commas, and a period."',
20 ),
21 'b:after' =>
22 array (
23 'content' => '"This string has CSS-like content: foo { color: rgb(0, 0, 0); }."',
24 ),
25 'c:after' =>
26 array (
27 'content' => '\'This string uses single quotes, not double (").\'',
28 ),
29 )