font-family-rule-007.xht (1377B)
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 characters, escaped</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 family name having special characters needs to escape special character. Otherwise the font family name need to be quoted." /> 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 a box above the letter "X" below.</p> 26 <div id="div1">X</div> 27 <div id="div2">X</div> 28 </body> 29 </html>