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