abfdff5d5d65bdacaeb1bb8cb80f8c37c0d8ed23
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / selectors / same-merge-siblings.csst
1 --TEST--
2 merge multiples siblings occurences of same seletor
3 --SETTINGS--
4 merge_selectors = 0
5 --CSS--
6 h1,h2 {font-size:1em;}
7 h1 {display: inherit;}
8 h1 {font-size:2em;}
9 --EXPECT--
10 array (
11 'h1,h2' =>
12 array (
13 'font-size' => '1em',
14 ),
15 'h1' =>
16 array (
17 'display' => 'inherit',
18 'font-size' => '2em',
19 ),
20 )