white-space-p-element-001.xht (1203B)
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' vs. 'p' 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-generated-content-before-001-ref.xht" /> 9 <meta name="assert" content="The 'p' element and 'white-space: normal' assignment behave the same way with respect to white space." /> 10 <style type="text/css"> 11 div 12 { 13 white-space: normal; 14 } 15 div + p { margin: 0; } 16 </style> 17 </head> 18 <body> 19 <p>Test passes if the two lines below have the exact same spacing.</p> 20 <div> The spacing on these two sentences need to be the same! </div> 21 <p> The spacing on these two sentences need to be the same! </p> 22 </body> 23 </html>