[DEPOT] ~gitignore : exclusion d'IMG
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / shorthands / background-noopt.csst
1 --TEST--
2 Test general background optimization
3 --CSS--
4 a {
5 background-color: white;
6 background-image: url(123);
7 background-repeat: no-repeat;
8 background-position: 1px 1px;
9 background-attachment: scroll;
10 }
11 --EXPECT--
12 array (
13 'a' =>
14 array (
15 'background-color' => '#fff',
16 'background-image' => 'url(123)',
17 'background-repeat' => 'no-repeat',
18 'background-position' => '1px 1px',
19 'background-attachment' => 'scroll',
20 ),
21 )
22 --SETTINGS--
23 optimise_shorthands=1