summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/editing/inserting/insert-table-in-paragraph-crash.html
blob: 6b25ff847ea95b2105a82f9159c35c2418d3e6b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div id="container">
Editable:<div contenteditable="true" id="editable"></div>
</div>
</div>
<script src="../../fast/js/resources/js-test-pre.js"></script>
<script>
function $(id) { return document.getElementById(id); }
$('editable').focus();
var expected = '<table><tbody><tr><td>stats</td></tr></tbody></table>';
document.execCommand('InsertHTML', false, '<p>' + expected + '</p>');
shouldBeEqualToString('$("editable").innerHTML', expected);
if (window.testRunner)
    $('container').outerHTML = '';
</script>
<script src="../../fast/js/resources/js-test-post.js"></script>
</body>