a6568645fa0988d4918bf215cc096b87c5b78872
[ptitvelo/web/www.git] / www / plugins-dist / compresseur / lib / csstidy / testing / unit-tests / csst / special / font-face-atmedia.csst
1 --TEST--
2 Test simple CSS print
3 --CSS--
4 /* Based on the original Style Sheet for the fisubsilver v2 Theme for phpBB version 2+
5 Edited by Daz - http://www.forumimages.com - last updated 26-06-03 */
6 /* The content of the posts (body of text) */
7 /* General page style */
8
9 /* begin suggest post */
10 .float-l {
11 float : left ;
12 }
13
14 @font-face {
15 font-family: GillSans;
16 src:url("/generic/fonts/GillSansC.otf") format('opentype');
17 font-style: normal;
18 font-weight: bold;
19 }
20
21 .font-9{
22 font-size: 11px;
23 }
24
25 @media print {
26 .font-9{
27 font-size: 9px;
28 }
29 }
30
31 .form-suggest {
32 height : 200px ;
33 background : #DEE2D0 ;
34 vertical-align : top;
35 }
36
37
38 --FULLEXPECT--
39 array (
40 41 => array (
41 '.float-l' =>
42 array (
43 'float' => 'left',
44 ),
45 ),
46 ' ' => array (
47 '@font-face' => array (
48 'font-family' => 'GillSans',
49 'src' => 'url(/generic/fonts/GillSansC.otf) format("opentype")',
50 'font-style' => 'normal',
51 'font-weight' => '700',
52 ),
53 ),
54 42 => array (
55 '.font-9' =>
56 array (
57 'font-size' => '11px',
58 ),
59 ),
60 '@media print ' => array (
61 '.font-9' =>
62 array (
63 'font-size' => '9px',
64 ),
65 ),
66 43 =>
67 array (
68 '.form-suggest' =>
69 array (
70 'height' => '200px',
71 'background' => '#DEE2D0',
72 'vertical-align' => 'top',
73 ),
74 ),
75 )
76 --SETTINGS--