fresh-table-col-crash.html (460B)
1 <!DOCTYPE html> 2 <title>Scroll anchoring at focused input element inside editable newly created table-column</title> 3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 4 <link rel="help" href="https://issues.chromium.org/issues/427715253"> 5 <div id="container" contenteditable> 6 <input id="input" style="height:200vh;"> 7 </div> 8 <script> 9 scrollTo(0, 10); 10 input.focus(); 11 container.style.display = "table-column-group"; 12 </script>