white-space-pre-element-001.xht (1302B)
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' vs. '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-prop" /> 7 <link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-property"/> 8 <link rel="match" href="white-space-pre-element-001-ref.xht" /> 9 <meta name="assert" content="The 'pre' element and 'white-space: pre' assignment behave the same way with respect to white space." /> 10 <style type="text/css"> 11 pre, div 12 { 13 font-family: monospace; 14 font-size: 10pt; 15 margin: 0; 16 } 17 div 18 { 19 white-space: pre; 20 } 21 </style> 22 </head> 23 <body> 24 <p>Test passes if the next two lines have the exact same spacing.</p> 25 <div> The spacing on these two sentences need to be the same! </div> 26 <pre> The spacing on these two sentences need to be the same! </pre> 27 </body> 28 </html>