[DEPOT] ~gitignore : exclusion d'IMG
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / special / font-face-simple.csst
1 --TEST--
2 @font-face rules
3 --CSS--
4 @font-face {
5 font-family: GillSans;
6 src:url("/generic/fonts/GillSansLightC.otf") format('opentype');
7 font-style: normal;
8 font-weight: normal;
9 }
10
11 @font-face {
12 font-family: GillSans;
13 src:url("/generic/fonts/GillSansC.otf") format('opentype');
14 font-style: normal;
15 font-weight: bold;
16 }
17 --FULLEXPECT--
18 array (
19 ' ' => array(
20 '@font-face' =>
21 array (
22 'font-family' => 'GillSans',
23 'src' => 'url(/generic/fonts/GillSansLightC.otf) format("opentype")',
24 'font-style' => 'normal',
25 'font-weight' => '400',
26 ),
27 '@font-face ' =>
28 array (
29 'font-family' => 'GillSans',
30 'src' => 'url(/generic/fonts/GillSansC.otf) format("opentype")',
31 'font-style' => 'normal',
32 'font-weight' => '700',
33 ),
34 )
35 )