blob: 0891800446c4ec9524bb8d928e1e26879b26d682 [file] [log] [blame]
<style>
#el2 {
display: -webkit-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>