blob: 6fb423971c82e276c91b6ee026e84e2e5504326a [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
selection_test(
[
'<div contenteditable>',
'a<span style="white-space:pre">\t\t\t|</span>z',
'</div>',
],
'insertText X',
[
'<div contenteditable>',
'a<span style="white-space:pre">\t\t\t</span>X|z',
'</div>',
],
'Insert text at tab span');
</script>