blob: 6791e2f167603315f23d92126dfcc47d6e4a6f73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<!--
Reftest for Bug 1367860
Case 3: No font-family
(fails before patch)
-->
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div lang="ja" style="font-family: InvalidFontName;">
These two lines should be exactly the same.
</div>
<div lang="ja">
These two lines should be exactly the same.
</div>
</body>
</html>
|