run-in-relpos-between-002.xht (1940B)
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 - dynamically inserted rel pos inline should 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-text-ref.xht"/> 9 <meta name="flags" content="dom" /> 10 <meta name="assert" 11 content="Tests that run-ins don't run in if there's a dynamically 12 inserted rel pos inline between them and the block."/> 13 <style type="text/css"><![CDATA[ 14 div { display: block; } 15 .run-in { display: run-in; font-weight: bold } 16 #target { border: 2px solid black; } 17 .outer { position: relative; top: 50px; } 18 .inner { position: relative; top: -50px; } 19 ]]></style> 20 <script type="text/javascript"><![CDATA[ 21 function flushLayout(elt) { 22 elt.offsetWidth; /* Just undefined on non-elements, but that's ok */ 23 for (var i = 0; i < elt.childNodes.length; ++i) { 24 flushLayout(elt.childNodes[i]); 25 } 26 } 27 window.onload = function() { 28 flushLayout(document.documentElement); 29 var t = document.getElementById("target"); 30 var s = document.createElement("span"); 31 s.className = "inner"; 32 s.appendChild(document.createTextNode("Some text.")); 33 var s2 = document.createElement("span"); 34 s2.className = "outer"; 35 s2.appendChild(s); 36 t.parentNode.insertBefore(s2, t); 37 } 38 ]]></script> 39 </head> 40 <body> 41 <div class="run-in">Run-in header</div> 42 <div id="target">Start of block. The run-in header should NOT be inside the border around this block; it should be on a line by itself before the line containing "Some text".</div> 43 </body> 44 </html>