blob: c6600822013b95384c5fd8c57c2c07c6772512b0 [file]
<style>
img {
position: absolute;
}
</style>
<div><img id=img></div>
<div id=move_here>remove</div>
<div id=result></div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.execCommand("selectAll", false);
let selection = document.getSelection();
move_here.appendChild(img);
document.body.offsetHeight;
selection.deleteFromDocument();
document.body.offsetHeight;
result.innerText = "PASS if no crash or assert";
</script>