1367860-1.htm (442B)
1 <!DOCTYPE html> 2 <!-- 3 Reftest for Bug 1367860 4 Case 1: Language tag on ancestor / font-family on descendant 5 (passes before patch) 6 --> 7 8 <html> 9 <head> 10 <meta charset="UTF-8"> 11 </head> 12 <body> 13 <div lang="ja" style="font-family: InvalidFontName;"> 14 These two lines should be exactly the same. 15 </div> 16 <div lang="ja"><div style="font-family: InvalidFontName;"> 17 These two lines should be exactly the same. 18 </div></div> 19 </body> 20 </html>