ca7d5e3bd65ee7b8e4f9872be15608b53194c1fd
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / special / ie-hacks-sort.csst
1 --TEST--
2 IE Hacks Sort Issue/6
3 --SETTINGS--
4 discard_invalid_properties = 0
5 sort_properties = true
6 --CSS--
7 fakeList a {
8 width: 100%;
9 display: block;
10 height: 30px;
11 padding-top: 2px;
12 -padding-top: 0;
13 line-height:18px;
14 -moz-border-radius:10px;
15 *line-height:17;
16 /line-height:none;
17 _background-image: url(/ttt/gf.gif);
18 }
19 --EXPECT--
20 array (
21 'fakeList a' =>
22 array (
23 'width' => '100%',
24 'display' => 'block',
25 'height' => '30px',
26 'padding-top' => '2px',
27 '-padding-top' => '0',
28 'line-height' => '18px',
29 '-moz-border-radius' => '10px',
30 '*line-height' => '17',
31 '/line-height' => 'none',
32 '_background-image' => 'url(/ttt/gf.gif)',
33 ),
34 )