summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-face/name-collision-ref.html
blob: d5f5d4106f9a4f5c0ce3d8961ae74d981999f6d1 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE HTML>
<html>
<head>
<title>Font name collision test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<!-- 
  Font family names in @font-face rules take precedence over locally-available font families,
  so none of the names of commonly used platform fonts should match against locally available
  fonts.
-->

<style type="text/css">

@font-face {
  font-family: fallback;
  src: url(../fonts/mplus/mplus-1p-regular.ttf);
}

body {
  margin: 50px;
  font-family: fallback;
}

table {
  margin-left: 3em;
}

@font-face {
  font-family: Sample;
  src: url(../fonts/mplus/mplus-1p-black.ttf);
  font-weight: 900;
}

.sample { font-family: Sample, fallback; }

table {
  font-family: Sample;
}

table td {
  font-size: 24pt;
}

</style>

</head>

<body>

<p>All text below should appear in the same extra bold font face:</p>

<table>
<tr class="sample"><td>Sample</td></tr>
<tr class="arial"><td>Arial</td></tr>
<tr class="timesnewroman"><td>Times New Roman</td></tr>
<tr class="couriernew"><td>Courier New</td></tr>
<tr class="futura"><td>Futura</td></tr>
<tr class="helvetica"><td>Helvetica</td></tr>
<tr class="times"><td>Times</td></tr>
<tr class="courier"><td>Courier</td></tr>
<tr class="bitstreamverasans"><td>Bitstream Vera Sans</td></tr>
<tr class="dejavusans"><td>DejaVu Sans</td></tr>
<tr class="freesans"><td>FreeSans</td></tr>
</table>

</body>
</html>