blob: 986f6b0bf69f69b49f35b356483b683b256e08bc [file] [log] [blame]
<!doctype html>
<title>Removing and re-inserting a container should crash</title>
<link rel="help" href="https://crbug.com/1342750">
<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>