6555c5c2c6051a975af1916442bb25d59dbd758c
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / special / font-face_woff.csst
1 --TEST--
2 @font-face rules with woff https://github.com/Cerdic/CSSTidy/issues/issue/1
3 --CSS--
4 @font-face {
5 font-family: "Unibody8SmallCaps Regular";
6 src:url('fonts/unibody_8-smallcaps-webfont.woff') format('woff');
7 }
8 --FULLEXPECT--
9 array (
10 ' ' => array(
11 '@font-face' =>
12 array (
13 'font-family' => '"Unibody8SmallCaps Regular"',
14 'src' => 'url(fonts/unibody_8-smallcaps-webfont.woff) format("woff")',
15 ),
16 )
17 )