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/inline-flex-editing-with-updating-text-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Flexbox: inline-flex layout with updating text and editing operations</title>
<meta name="assert" content="This test ensures that inline-flex layout does not crash with updating text and editing operations.">
<style>#el0::first-letter, #el0:first-child { height: 10px; }</style>
<div id='container' contentEditable>
<a>
<img>
<div id="el0" style="display: inline-flex">
<pre></pre>
</div>
</a>
</div>
<script>
document.querySelector('pre').textContent = 'AA\u0605';
window.getSelection().selectAllChildren(document.getElementById('container'));
document.execCommand('FormatBlock', false, '<h1>');
</script>