run-in-breaking-002.xht (1557B)
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 - line-breaking after running in</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-breaking-002-ref.xht"/> 9 <meta name="assert" 10 content="Tests that run-ins that run in can line-break correctly, 11 and that their borders are then painted correctly."/> 12 <style type="text/css"><![CDATA[ 13 div { display: block; } 14 .run-in { display: run-in; border: 5px solid blue; font-weight: bold; 15 direction: rtl; } 16 #target { border: 2px solid black; padding: 1em; direction: rtl; } 17 ]]></style> 18 </head> 19 <body> 20 <span class="run-in">Run-in<br/>header</span> 21 <div id="target">Start of block. The run-in header should be inside the 22 border around this block and there should be no space between the word 23 "header" and the word "Start". The border of the run-in must have no 24 vertical part on the left in the first line and no vertical part on the 25 right in the second line. It must have a vertical part on the right in 26 the first line and a vertical part on the left in the second line. The 27 border of the run-in must not extend outside the border of the 28 block.</div> 29 </body> 30 </html>