4 <title>Issue
348283 crash test case
</title>
15 <!-- This is a minified version of the clusterfuzz test case at https://code.google.com/p/chromium/issues/detail?id=348283 -->
16 <body contenteditable=
"true">
18 window
.onload = function () {
19 var table
= document
.getElementById('table');
20 table
.insertAdjacentHTML('afterbegin', '<svg></svg><div><div id=\'div\'>text</div>');
22 var div
= document
.getElementById('div');
23 var selection
= window
.getSelection();
24 selection
.collapse(div
.firstChild
, 0);
25 document
.execCommand('InsertImage', false, 'about:blank');
26 window
.parent
.postMessage('FINISH', '*');
30 <table id=
"table" ></table>