blob: 864e3ef9a096cd56c3373c1210212100a4bf7436 [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
test(() => {
assert_selection(
[
'<div contenteditable><table><tbody><tr>',
'<td>foo|\n </td>',
'</tr></tbody></table></div>'
].join(''),
'insertHTML bar',
[
'<div contenteditable><table><tbody><tr>',
'<td>foobar|\n </td>',
'</tr></tbody></table></div>'
].join(''));
}, 'insertHTML text into a table cell following white spaces should not crash');
</script>