Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<title>Removing and re-inserting a container should crash</title>
<style>
#container { container-type: inline-size }
</style>
<div id="outer">
<div id="container"></div>
</div>
<script>
container.offsetTop;
let removed = container;
container.remove();
outer.appendChild(removed);
</script>