video-container-become-multicol.html (579B)
1 <!DOCTYPE html> 2 <title>Change a regular container to a multicol container, so that an inline VIDEO child ends up in the non-first column</title> 3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 4 <link rel="help" href="https://issues.chromium.org/issues/392928804"> 5 <div id="container" style="column-fill:auto; height:100px; orphans:1; widows:1;"> 6 <br> 7 <video width="100" height="100" controls></video> 8 </div> 9 <script> 10 requestAnimationFrame(()=> { 11 requestAnimationFrame(()=> { 12 container.style.columns = "2"; 13 }); 14 }); 15 </script>