778adce5c6cdef766db05e395bef0cccb0142003
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / shorthands / bugshorthand3.csst
1 --TEST--
2 Test general font optimization
3 --CSS--
4 .form-suggest {
5 height : 200px ;
6 background : #DEE2D0 ;
7 vertical-align : top;
8 }
9
10 body{
11 color: #000000;
12 font : 11px Verdana, Arial, Helvetica, sans-serif ;
13 margin: 0 10px 10px 10px;
14 padding: 0;
15 overflow:auto;
16 }
17 .degrade{
18 background-color:#777777;
19 background:-webkit-gradient(linear,left top,left bottom,from(#999999),to(#666666));
20 background-image:-moz-linear-gradient(top,#999999,#666666);
21 }
22
23 .sans {background:none;}
24 --EXPECT--
25 array (
26 '.form-suggest' =>
27 array (
28 'height' => '200px',
29 'background' => '#DEE2D0',
30 'vertical-align' => 'top',
31 ),
32
33 'body' =>
34 array (
35 'color' => '#000',
36 'font' => '11px Verdana,Arial,Helvetica,sans-serif',
37 'margin' => '0 10px 10px',
38 'padding' => '0',
39 'overflow' => 'auto',
40 ),
41 '.degrade' =>
42 array (
43 'background-color' => '#777',
44 'background' => '-webkit-gradient(linear,left top,left bottom,from(#999),to(#666))',
45 'background-image' => '-moz-linear-gradient(top,#999,#666)',
46 ),
47 '.sans' =>
48 array (
49 'background' => 'none',
50 ),
51
52 )
53 --SETTINGS--
54 optimise_shorthands=3
55 sort_selectors=0
56 sort_properties=0