Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / css3 / flexbox / insert-text-crash.html
blobc42ecefc08980f43f867b590287da525d5313a74
1 <style>
2 #el2 {
3 display: flex;
4 border: 1px solid red;
6 #el3 {
7 position: absolute;
8 border: 1px solid green;
10 </style>
11 <body contenteditable=true>
12 <div id="el2"><div id="el3">AA </div></div>
13 </body>
14 <script>
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 document.execCommand('selectall')
18 document.execCommand('inserttext', '')
19 document.body.innerText = "This test passes if it does not crash.";
20 </script>