mirror of
https://github.com/servo/servo.git
synced 2025-06-26 01:54:33 +01:00
19 lines
770 B
HTML
19 lines
770 B
HTML
<!DOCTYPE html>
|
|
<title>CSS Flexbox: inline-flex layout with editing operations</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers">
|
|
<link rel="help" href="https://bugs.webkit.org/show_bug.cgi?id=77772">
|
|
<link rel="help" href="https://crbug.com/118662">
|
|
<meta name="assert" content="This test ensures that inline-flex layout does not crash with editing operations.">
|
|
<style>#el0::first-letter, #el0:first-child { height: 100px; }</style>
|
|
<div id='container' contentEditable>
|
|
<a>
|
|
<img>
|
|
<div id="el0" style="display: inline-flex">
|
|
<pre>AAAAA</pre>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<script>
|
|
window.getSelection().selectAllChildren(document.getElementById('container'));
|
|
document.execCommand('FormatBlock', false, '<h5>');
|
|
</script>
|