Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-scroll-anchoring/fresh-table-col-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Scroll anchoring at focused input element inside editable newly created table-column</title>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div id="container" contenteditable>
<input id="input" style="height:200vh;">
</div>
<script>
scrollTo(0, 10);
input.focus();
container.style.display = "table-column-group";
</script>