CSS21-t1502-no-inherited-font-family.xhtml (2021B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS 2.1: Font matching algorithm</title> 5 <link rel="author" title="L. David Baron" href="https://dbaron.org/" /> 6 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#algorithm" /> 8 <meta name="assert" content="That the 'UA-dependent default 'font-family'' described in step (5) does not vary based on the ancestor's font-family property." /> 9 </head> 10 <body> 11 12 <div style="font-family: Arial, Helvetica, sans-serif"> 13 <div style="font-family: FontDoesNotExist"> 14 Every line of text in this page should be in the same font. 15 </div> 16 </div> 17 18 <div style="font-family: Arial, Helvetica"> 19 <div style="font-family: FontDoesNotExist"> 20 Every line of text in this page should be in the same font. 21 </div> 22 </div> 23 24 <div style="font-family: Arial"> 25 <div style="font-family: FontDoesNotExist"> 26 Every line of text in this page should be in the same font. 27 </div> 28 </div> 29 30 <div style="font-family: Times New Roman, Times, serif"> 31 <div style="font-family: FontDoesNotExist"> 32 Every line of text in this page should be in the same font. 33 </div> 34 </div> 35 36 <div style="font-family: Times New Roman, Times"> 37 <div style="font-family: FontDoesNotExist"> 38 Every line of text in this page should be in the same font. 39 </div> 40 </div> 41 42 <div style="font-family: Times New Roman"> 43 <div style="font-family: FontDoesNotExist"> 44 Every line of text in this page should be in the same font. 45 </div> 46 </div> 47 48 <div style="font-family: Courier New, Courier, monospace"> 49 <div style="font-family: FontDoesNotExist"> 50 Every line of text in this page should be in the same font. 51 </div> 52 </div> 53 54 <div style="font-family: Verdana"> 55 <div style="font-family: FontDoesNotExist"> 56 Every line of text in this page should be in the same font. 57 </div> 58 </div> 59 60 </body> 61 </html>