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