fixup-dynamic-anonymous-inline-table-002.html (834B)
1 <!DOCTYPE html> 2 <title>CSS Test: CSS Tables fixup merge anonymous inline table siblings (cell + row)</title> 3 <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> 4 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html"> 5 <link rel="help" href="https://drafts.csswg.org/css-tables/#fixup-algorithm"> 6 <style> 7 .row { 8 display: table-row; 9 } 10 .cell { 11 display: table-cell; 12 } 13 .filler { 14 width: 100px; 15 height: 50px; 16 background-color: green; 17 } 18 </style> 19 <p>Test passes if there is a filled green square.</p> 20 <span> 21 <span class="cell"> 22 <div class="filler"></div> 23 </span> 24 <span id="rm">Remove me</span> 25 <span class="row"> 26 <span class="cell"> 27 <div class="filler"></div> 28 </span> 29 </span> 30 </span> 31 <script> 32 rm.offsetTop; 33 rm.remove(); 34 </script>