31283f1e7b328193039756ae23c05e8361a5970e
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / properties / multiple-properties.csst
1 --TEST--
2 Support for multiple background properties.
3 --CSS--
4 body {
5 background: linear-gradient(bottom, rgb(153,102,51) 0%, rgb(51,153,102) 30%, rgb(102,51,153) 100%);
6 background: -o-linear-gradient(bottom, rgb(153,102,51) 0%, rgb(51,153,102) 30%, rgb(102,51,153) 100%);
7 background: -moz-linear-gradient(bottom, rgb(153,102,51) 0%, rgb(51,153,102) 30%, rgb(102,51,153) 100%);
8 background: -webkit-linear-gradient(bottom, rgb(153,102,51) 0%, rgb(51,153,102) 30%, rgb(102,51,153) 100%);
9 background: -ms-linear-gradient(bottom, rgb(153,102,51) 0%, rgb(51,153,102) 30%, rgb(102,51,153) 100%);
10 }
11 --EXPECT--
12 array (
13 'body' =>
14 array (
15 'background' => 'linear-gradient(bottom,#963 0%,#396 30%,#639 100%)',
16 'background ' => '-o-linear-gradient(bottom,#963 0%,#396 30%,#639 100%)',
17 'background ' => '-moz-linear-gradient(bottom,#963 0%,#396 30%,#639 100%)',
18 'background ' => '-webkit-linear-gradient(bottom,#963 0%,#396 30%,#639 100%)',
19 'background ' => '-ms-linear-gradient(bottom,#963 0%,#396 30%,#639 100%)',
20 ),
21 )