white-space-processing-039.xht (1345B)
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 'pre-line' and space at beginning of line</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-2" /> 8 <link rel="match" href="white-space-processing-037-ref.xht" /> 9 <meta name="flags" content="ahem" /> 10 <meta name="assert" content="Space at beginning of line is removed when 'white-space' is set to 'pre-line'." /> 11 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 12 <style type="text/css"> 13 div 14 { 15 font: 16px/1em Ahem; 16 } 17 #div1 18 { 19 white-space: pre-line; 20 } 21 #div2 22 { 23 background: black; 24 height: 1em; 25 width: 1em; 26 } 27 </style> 28 </head> 29 <body> 30 <p>Test passes if there is only one box below.</p> 31 <div id="div1"> X</div> 32 <div id="div2"></div> 33 </body> 34 </html>