blob: 01581473c29998c8253b8a37221d588f24b3fed4 [file] [log] [blame]
<!DOCTYPE html>
<style>
.img { display: table; }
</style>
<body>
<img id="first" data-expected-width=0>
<img id="second" class="img">
crbug.com/553048: Don't attempt to collapse anonymous children when destroying them.
</body>
<script src="../../resources/check-layout.js"></script>
<script>
document.body.offsetTop;
document.getElementById("second").style.position = "fixed";
document.body.offsetTop;
document.getElementById("second").style.display = "inline-block";
window.checkLayout("#first");
</script>