remove-split-inline-1.html (621B)
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="remove-split-inline-1-ref.html"> 8 <script> 9 function doit() { 10 var target = document.getElementById("target"); 11 target.remove(); 12 } 13 </script> 14 <body onload='doit()'> 15 One 16 <span id="target"> 17 Three 18 <div>Four</div> 19 Five 20 </span> 21 Two 22 </body>