run-in-basic-014.xht (1143B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Run in - basic functionality with preserved whitespace</title> 5 <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"/> 6 <link rel="reviewer" title="Microsoft" href="http://www.microsoft.com/" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#run-in"/> 8 <link rel="match" href="run-in-pre-ref.xht"/> 9 <meta name="assert" 10 content="Tests that run-ins don't run in across preserved whitespace."/> 11 <style type="text/css"><![CDATA[ 12 div { display: block; } 13 .run-in { display: run-in; font-weight: bold } 14 #target { border: 2px solid black; } 15 #container { white-space: pre; } 16 #container > * { white-space: normal; } 17 ]]></style> 18 </head> 19 <body> 20 <div id="container"><div class="run-in">Run-in header</div> <div id="target">Start of block. The run-in header should be outside the border around this block and there should be a blank line between the run-in header and this block.</div></div> 21 </body> 22 </html>