fixup-dynamic-anonymous-inline-table-001.html (894B)
1 <!DOCTYPE html> 2 <title>CSS Test: CSS Tables fixup merge anonymous inline table siblings (row-group + row-group)</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 .group { 8 display: table-row-group; 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="group"> 22 <span class="cell"> 23 <div class="filler"></div> 24 </span> 25 </span> 26 <span id="rm">Remove me</span> 27 <span class="group"> 28 <span class="cell"> 29 <div class="filler"></div> 30 </span> 31 </span> 32 </span> 33 <script> 34 rm.offsetTop; 35 rm.remove(); 36 </script>