run-in-contains-inline-003.xht (1509B)
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 - a child inline with table-cell child with an abs pos child should not prevent 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-basic-ref.xht"/> 9 <meta name="assert" 10 content="Tests that run-ins actually run in if they have child inlines 11 which contain table cells which contain abs pos kids."/> 12 <style type="text/css"><![CDATA[ 13 div { display: block; } 14 .run-in { display: run-in; font-weight: bold } 15 #target { border: 2px solid black; position: relative; } 16 .run-in > span { visibility: hidden; } /* tests that the abs pos actually 17 shows up */ 18 .run-in > span > span { display: table-cell; visibility: visible; } 19 .run-in > span > span > span { position: absolute; top: 0; } 20 ]]></style> 21 </head> 22 <body> 23 <div class="run-in">Run-in <span><span><span>header</span></span></span><span>header</span></div> 24 <div id="target">Start of block. The run-in header should be inside the border around this block and there should be no space between the word "header" and the word "Start".</div> 25 </body> 26 </html>