Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / resources / insert-list-br-with-child-crash-iframe.html
blobeaa173d68c390a1d3fd1309d799db887154e4d07
1 <html>
2 <head>
3 <script>
4 window.onload = function () {
5 document.designMode = 'on';
6 var br = document.getElementById('br');
7 br.appendChild(document.createElement('div'));
8 document.getSelection().collapse(br, 0);
9 document.execCommand('InsertUnorderedList', false, false);
10 window.parent.postMessage('FINISH', '*');
12 </script>
13 </head>
14 <body>
15 <ul><li><br id='br' /></li></ul>
16 </body>
17 </html>