white-space-processing-050.xht (1658B)
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: White-space 'normal' on a 'pre' element</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#white-space-model" /> 7 <link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-1" /> 8 <link rel="match" href="white-space-001-ref.xht" /> 9 <meta name="flags" content="ahem" /> 10 <meta name="assert" content="The 'white-space' property set to 'normal' removes extra spacing when two spaces are next to each other when set on 'pre' element." /> 11 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 12 <style type="text/css"> 13 pre 14 { 15 font: 16px/1em Ahem; 16 margin: 0; 17 padding: 0; 18 } 19 #pre1 20 { 21 white-space: normal; 22 } 23 #pre2 24 { 25 background: blue; 26 } 27 #pre3 28 { 29 margin-left: 1em; 30 } 31 #pre2, #pre3 32 { 33 background: black; 34 display: inline-block; 35 height: 1em; 36 width: 2em; 37 } 38 </style> 39 </head> 40 <body> 41 <p>Test passes if there are 2 filled black squares.</p> 42 <pre id="pre1">XX XX</pre> 43 <pre id="pre2"></pre><pre id="pre3"></pre> 44 </body> 45 </html>