blob: 2dadb67d5609537065564ee7082a9c3b27ff01d1 [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>',
'a',
'<span style="white-space:pre"> | </span>',
'z',
'</div>'
].join(''),
'insertText x',
[
'<div contenteditable>',
'a',
'<span style="white-space:pre"> </span>',
'x|',
'<span style="white-space:pre"> </span>',
'z',
'</div>'
].join('')), 'Insert text in tabspan');
</script>