Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/crashtests/insert-text.html - WPT Dashboard Interop Dashboard
<!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>