Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-anchor-position/anchor-name-table-col-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
* {
contain-intrinsic-size: auto none !important;
anchor-name: --anchor-name_0;
}
</style>
<script>
window.addEventListener("load", async () => {
const body = document.getElementById("id_3")
const table = document.createElement("table")
const tr = document.createElement("tr")
table.appendChild(tr)
const col = document.createElement("col")
table.appendChild(col)
body.appendChild(table)
})
</script>
<body id="id_3">
<ol></ol>
</body>