whitespace-present-1b.html (703B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS 2.1 Test Suite: handling of blocks inside inlines</title> 4 <link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu"> 5 <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/"> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level"> 7 <link rel="match" href="whitespace-present-1-ref.html"> 8 <style> 9 body > span { border: 3px solid blue } 10 </style> 11 <script> 12 function doIt() { 13 var t = document.createTextNode(" "); 14 var d = document.getElementById("d"); 15 d.parentNode.insertBefore(t, d); 16 } 17 </script> 18 <body onload="doIt()"> 19 <span> 20 <div>One</div><div id="d">Two</div> 21 </span> 22 </body>