a4e3da1e6b7dfde0faa7c57dc4259654770601a6
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / values / colors.csst
1 --TEST--
2 Test color optimisation
3 --CSS--
4 a {
5 foo:rgb(0,0,0);
6 bar:black;
7 baz:#ffaabb;
8 qux:#f00;
9 quux:blanchedalmond;
10 quuux:rgb(0,0,1);
11 }
12 --EXPECT--
13 array (
14 'a' =>
15 array (
16 'foo' => '#000',
17 'bar' => '#000',
18 'baz' => '#fab',
19 'qux' => 'red',
20 'quux' => '#ffebcd',
21 'quuux' => '#000001',
22 ),
23 )