26ac0968d57a4b4788296e82586d224064ffa50e
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / shorthands / font-general.csst
1 --TEST--
2 Test general font optimization
3 --CSS--
4 a {
5 font-weight: bold;
6 font-size: 12px;
7 line-height: 2em;
8 font-family: Arial, "Trebuchet MS", serif;
9 }
10 b {
11 font: 14px/1.25 Trebuchet MS, Arial, Tahoma, sans-serif;
12 }
13 --EXPECT--
14 array (
15 'a' =>
16 array (
17 'font' => '700 12px/2em Arial,"Trebuchet MS",serif',
18 ),
19 'b' =>
20 array (
21 'font' => '14px/1.25 "Trebuchet MS",Arial,Tahoma,sans-serif',
22 ),
23 )
24 --SETTINGS--
25 optimise_shorthands=2