Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>Chrome crash issue 439886903</title>
<html class="test-wait">
<div id="container" style="container-type:inline-size">
<div id="target"></div>
<object id="svg" data='data:image/svg+xml,<?xml version="1.0"?><svg></svg>'></object>
</div>
<script type="module">
await new Promise(r => svg.addEventListener("load", r, { once: true }));
document.body.offsetTop;
container.style.width = "100px";
target.style.backgroundColor = "red";
document.body.offsetTop;
document.documentElement.classList.remove("test-wait");
</script>