run-in-basic-013.xht (1606B)
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 run-in should run 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="flags" content="dom" /> 10 <meta name="assert" 11 content="Tests that dynamically inserted run-ins run in."/> 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; } 16 ]]></style> 17 <script type="text/javascript"><![CDATA[ 18 function flushLayout(elt) { 19 elt.offsetWidth; /* Just undefined on non-elements, but that's ok */ 20 for (var i = 0; i < elt.childNodes.length; ++i) { 21 flushLayout(elt.childNodes[i]); 22 } 23 } 24 window.onload = function() { 25 flushLayout(document.documentElement); 26 var t = document.getElementById("target"); 27 var s = document.createElement("div"); 28 s.appendChild(document.createTextNode("Run-in header")); 29 s.className = "run-in"; 30 t.parentNode.insertBefore(s, t); 31 } 32 ]]></script> 33 </head> 34 <body> 35 <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> 36 </body> 37 </html>