399636-quirks-css.html (592B)
1 <html lang="en-US"> 2 <head> 3 <title>Reftest, bug 399636 (quirks mode, family from CSS)</title> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 5 <style type="text/css"> 6 body { text-rendering: optimizeLegibility; } 7 8 /* the first three fonts lack glyphs for P, A, and S */ 9 span { font-family: Symbol, Webdings, Wingdings, serif; } 10 11 /* ensure consistent vertical positioning under variation in 12 first-choice font */ 13 p { line-height: 50px; font-size: 16px; } 14 span, font { line-height: 25px; } 15 16 </style> 17 </head> 18 <body> 19 20 <p> <span>PASS</span></p> 21 22 </body> 23 </html>