blob: 977743989e1ca29b7c739228f7aff6eb566d8678 (
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 2: Language tag on descendant / font-family on ancestor
(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 style="font-family: InvalidFontName;"><div lang="ja">
These two lines should be exactly the same.
</div></div>
</body>
</html>
|