table-cell-content-change-000.html (702B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=348064"> 3 <link rel="match" href="table-cell-content-change-000-ref.html"> 4 <p>You should see the text "first column" once in the first column, and the text 5 "second column" twice in the second column.</p> 6 <div style="columns:2; orphans:1; widows:1;"> 7 <div style="display:table-row;"> 8 first column 9 <div style="height:0.1em;"></div> 10 </div> 11 <div style="display:table-row;"> 12 second column 13 <div id="elm" style="display:none;">second column</div> 14 </div> 15 </div> 16 </body> 17 <script> 18 document.body.offsetTop; // trigger layout 19 document.getElementById('elm').style.display = 'block'; 20 </script>