blob: 0f90870dea3a60e33642e4f50e452c77727bcd19 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<title>Bug 668758 - @font-face disrupts font preferences</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
/* none of these @font-face declarations should affect the rendering! */
@font-face {
font-family: Times;
src: url(../fonts/mplus/mplus-1p-black.ttf);
}
@font-face {
font-family: Times New Roman;
src: url(../fonts/mplus/mplus-1p-black.ttf);
}
@font-face {
font-family: Tms Rmn;
src: url(../fonts/mplus/mplus-1p-black.ttf);
}
@font-face {
font-family: Droid Serif;
src: url(../fonts/mplus/mplus-1p-black.ttf);
}
@font-face {
font-family: Courier;
src: url(../fonts/mplus/mplus-1p-black.ttf);
}
@font-face {
font-family: Courier New;
src: url(../fonts/mplus/mplus-1p-black.ttf);
}
@font-face {
font-family: Droid Sans Mono;
src: url(../fonts/mplus/mplus-1p-black.ttf);
}
body {
margin: 50px;
font-family: serif;
}
</style>
</head>
<body>
<p>
This should be rendered using the default serif font.
</p>
<pre>
And this is preformatted text that ought to be monospaced.
</pre>
</body>
</html>
|