67cc6cc74c9adf812a60b457fd51708ce83f8f64
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / properties / preserve-merging.csst
1 --TEST--
2 Preserve merging of properties issue/2
3 --CSS--
4 div {
5 display:block;
6 display:inline-block;
7 }
8 .gradient {
9 background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0.15, rgba(215,240,240,0.9)), color-stop(0.5, rgba(235,250,250,0)));
10 background-image: -moz-linear-gradient(bottom,rgba(215,240,240,0.9),rgba(235,250,250,0)) #ebf7f9;
11 }
12 --EXPECT--
13 array (
14 'div' =>
15 array (
16 'display' => 'block',
17 'display ' => 'inline-block',
18 ),
19 '.gradient' =>
20 array (
21 'background-image' => '-webkit-gradient(linear,left bottom,left top,color-stop(0.15,rgba(215,240,240,0.9)),color-stop(0.5,rgba(235,250,250,0)))',
22 'background-image ' => '-moz-linear-gradient(bottom,rgba(215,240,240,0.9),rgba(235,250,250,0)) #ebf7f9',
23 ),
24 )
25 --SETTINGS--
26 discard_invalid_properties=false
27 optimise_shorthands=0
28 css_level='CSS21'