font-family-rule-002a.xht (2008B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 3 <html xmlns="http://www.w3.org/1999/xhtml"> 4 5 <head> 6 7 <title>CSS Test: Unquoted and unescaped font-family name with white spaces</title> 8 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> 10 <link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-family-prop" /> 11 <link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-family-prop" title="3.1 Font family: the font-family property" /> 12 <link rel="match" href="font-family-rule-002a-ref.xht" /> 13 14 <meta content="Any white space characters before or after an unquoted and unescaped font-family name are removed. Any sequence of white space characters between identifiers of an unquoted and unescaped font-family name should be converted to a single white space separating its identifiers." name="assert" /> 15 16 <style type="text/css"><![CDATA[ 17 div 18 { 19 font-size: 1.25em; 20 line-height: 1.5; 21 } 22 23 #quoted 24 { 25 font-family: "White Space"; 26 } 27 28 #unquoted 29 { 30 font-family: White Space; 31 } 32 33 #unquoted-spaces-before 34 { 35 font-family: White Space; 36 } 37 38 #unquoted-spaces-between 39 { 40 font-family: White Space; 41 } 42 43 #unquoted-spaces-after 44 { 45 font-family: White Space ; 46 } 47 48 #unquoted-spaces-all 49 { 50 font-family: White Space ; 51 } 52 ]]></style> 53 54 </head> 55 56 <body> 57 58 <p>PREREQUISITE: Operating system needs to have the '<a href="support/AHEM_whitespace.ttf" type="application/x-font-ttf">White Space</a>' font installed.</p> 59 60 <p>Post Test: Remove test font after running the test.</p> 61 62 <p>Test passes if there are 6 short black stripes.</p> 63 64 <div id="quoted">FAIL</div> 65 66 <div id="unquoted">FAIL</div> 67 68 <div id="unquoted-spaces-before">FAIL</div> 69 70 <div id="unquoted-spaces-between">FAIL</div> 71 72 <div id="unquoted-spaces-after">FAIL</div> 73 74 <div id="unquoted-spaces-all">FAIL</div> 75 76 </body> 77 </html>