font-family-rule-003.xht (1383B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Font family name with special character, quoted</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-family-prop" /> 7 <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-family-prop"/> 8 <meta name="flags" content="invalid" /> 9 <meta name="assert" content="Font names containing any special characters can be quoted. Otherwise the special character need to be escaped." /> 10 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 11 <style type="text/css"> 12 #div1 13 { 14 font-family: Ahem!; 15 } 16 #div2 17 { 18 font-family: "ahem!"; 19 } 20 </style> 21 </head> 22 <body> 23 <p>PREREQUISITE: Operating system needs to have the '<a href="support/AHEM_ahem!.ttf">ahem!</a>' font installed.</p> 24 <p>Post Test: Remove test font after running the test.</p> 25 <p>Test passes if there is at least one box below. It is ok to have one letter "X".</p> 26 <div id="div1">X</div> 27 <div id="div2">X</div> 28 </body> 29 </html>