white-space-generated-content-before-001.xht (1347B)
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' vs. ':before' assignment</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/#valdef-white-space-pre-line" /> 8 <link rel="match" href="white-space-generated-content-before-001-ref.xht" /> 9 <meta name="assert" content="The ':before' assignment and 'white-space: pre-line' assignment behave the same way with respect to white space." /> 10 <style type="text/css"> 11 #div1 12 { 13 white-space: pre-line; 14 } 15 #div2:before 16 { 17 content:" The spacing on these "; 18 white-space: pre-line; 19 } 20 </style> 21 </head> 22 <body> 23 <p>Test passes if the two lines below have the exact same spacing.</p> 24 <div id="div1"> The spacing on these two sentences need to be the same! </div> 25 <div id="div2">two sentences need to be the same! </div> 26 </body> 27 </html>