blob: 1cf1526317db661fcce4adbd6dc7e352a977a479 [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><div>foo^</div><div>bar|</div></div>',
'bold',
'<div contenteditable><div>foo^</div><div><b>bar|</b></div></div>'),
'Bolding a selection from end of line should not change unselected text on starting line.');
</script>