summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/css3/flexbox/inline-flex-crash.html
blob: e5514fedc0b85955d175ff2a35a1807f119dfd8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<style>#el0::first-letter, #el0:first-child { height: 10px; }</style>
This test passes if it doesn't crash.

<div id='container' contentEditable><a><img><div id="el0" style="display: -webkit-inline-flex"><pre></pre></div></a></div>
<script>
if (window.testRunner)
    testRunner.dumpAsText();

document.querySelector('pre').textContent = 'AA\u0605';
window.getSelection().selectAllChildren(document.getElementById('container'));
document.execCommand('FormatBlock', false, '<h1>');
</script>