run-in-basic-004.xht (1772B)
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 multiple whitespace nodes</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 run-ins actually run in if there are multiple 12 whitespace nodes between the run-in and the following block. 13 There must be multiple whitespace nodes in the DOM between the 14 run-in and the following block."/> 15 <style type="text/css"><![CDATA[ 16 div { display: block; } 17 .run-in { display: run-in; font-weight: bold } 18 #target { border: 2px solid black; } 19 ]]></style> 20 </head> 21 <body> 22 <div id="makemerun">Run-in header</div> 23 <script type="text/javascript"><![CDATA[ 24 document.body.appendChild(document.createTextNode(" ")); 25 document.body.appendChild(document.createTextNode(" ")); 26 window.onload = function() { 27 var t = document.getElementById("target"); 28 if (t.previousSibling.nodeType == 3 /* Node.TEXT_NODE */ && 29 t.previousSibling.previousSibling.nodeType == 3) { 30 document.getElementById("makemerun").className = "run-in"; 31 } 32 } 33 ]]></script> 34 <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> 35 </body> 36 </html>