blob: c42ecefc08980f43f867b590287da525d5313a74 [file] [log] [blame]
<style>
#el2 {
display: flex;
border: 1px solid red;
}
#el3 {
position: absolute;
border: 1px solid green;
}
</style>
<body contenteditable=true>
<div id="el2"><div id="el3">AA </div></div>
</body>
<script>
if (window.testRunner)
testRunner.dumpAsText();
document.execCommand('selectall')
document.execCommand('inserttext', '')
document.body.innerText = "This test passes if it does not crash.";
</script>