table-caption-inline-block-remove-child.html (621B)
1 <!DOCTYPE html> 2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1347868"> 4 <div style="columns:2; column-fill:auto; height:500px;"> 5 <table> 6 <caption> 7 <div style="display:inline-block;"> 8 <div style="writing-mode:vertical-lr;"> 9 <div id="elm" style="display:inline-block;"></div> 10 <div style="display:inline-block; overflow:auto;"></div> 11 </div> 12 </div> 13 </caption> 14 </table> 15 </div> 16 <script> 17 document.body.offsetTop; 18 elm.style.display = "none"; 19 </script>