Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html class="test-wait">
<script>
window.addEventListener("load", async () => {
const viewTransition = document.startViewTransition(async () => {})
await viewTransition.ready
const header = document.createElement("th")
document.documentElement.appendChild(header)
document.documentElement.getBoundingClientRect();
document.documentElement.className = "";
})
</script>
</html>