summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/fonts/font-144.xht
blob: 405fea17b64c0d206ca0773be97a51f8633a1e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Test: Parsing the 'font' shorthand</title>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/fonts/001.html" type="text/html"/>
  <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-shorthand" />
  <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-prop"/>

  <meta name="flags" content="ahem"/>
  <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
  <style type="text/css">
   p { color: green; margin: 1em; }
   .test { width: 6em; }
   span { background: red; color: white; }
   .a { font: normal normal normal 1em/normal Ahem, serif; }
   .b { font: normal normal normal medium/normal Ahem, serif; }
   .c { font: normal normal normal medium/1 Ahem, serif; }
   .d { font: normal normal normal 1em/1 Ahem, serif; }
   .e { font: normal normal 1em/1 Ahem, serif; }
   .f { font: normal 1em/1 Ahem, serif; }
   .g { font: 1em/1 Ahem, serif; }
   .h { font: normal normal normal 1em Ahem, serif; }
   .i { font: normal normal normal medium Ahem, serif; }
   .j { font: normal normal normal medium Ahem, serif; }
   .k { font: normal normal normal 1em Ahem, serif; }
   .l { font: normal normal 1em Ahem, serif; }
   .m { font: normal 1em Ahem, serif; }
   .n { font: 1em Ahem, serif; }
  </style>
 </head>
 <body>

  <p>Test passes if this sentence is green and if there is <strong>no red below</strong>.</p>

  <p class="test a"> <span>FAIL-a</span> </p>
  <p class="test b"> <span>FAIL-b</span> </p>
  <p class="test c"> <span>FAIL-c</span> </p>
  <p class="test d"> <span>FAIL-d</span> </p>
  <p class="test e"> <span>FAIL-e</span> </p>
  <p class="test f"> <span>FAIL-f</span> </p>
  <p class="test g"> <span>FAIL-g</span> </p>
  <p class="test h"> <span>FAIL-h</span> </p>
  <p class="test i"> <span>FAIL-i</span> </p>
  <p class="test j"> <span>FAIL-j</span> </p>
  <p class="test k"> <span>FAIL-k</span> </p>
  <p class="test l"> <span>FAIL-l</span> </p>
  <p class="test m"> <span>FAIL-m</span> </p>
  <p class="test n"> <span>FAIL-n</span> </p>

 </body>
</html>