Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>Inserting text into a flexbox with absolute positioned children does not crash</title>
<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>
document.execCommand('selectall');
document.execCommand('inserttext', ''); // no text value — the crash triggers regardless
</script>