blob: f9bfdda7c501b8da82f7e8272f82afce7c2e3a79 [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>',
'<span id="test">foo</span><br><br>|bar',
'</div>',
].join(''),
'insertParagraph',
[
'<div contenteditable>',
'<span id="test">foo</span><br><br><br><div>|bar</div>',
'</div>',
].join('')),
'Insert BR and enclose "bar" with DIV');
</script>