blob: 01f2b8ac2e62a36e6ce4919c8ea00e09ba328dc4 [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 border="1" width="100px"><tr>',
'<td>foo<br><br><br><span>bar|</span></td>',
'</tr></table><br>',
'</div>',
],
'insertOrderedList',
[
'<div contenteditable>',
'<table border="1" width="100px"><tbody><tr>',
'<td><ol>',
'<li>^foo</li>',
'<li><br></li>',
'<li><br></li>',
'<li><span>bar|</span></li>',
'</ol></td>',
'</tr></tbody></table><br>',
'</div>',
]),
'InsertOrderedList before TABLE should not hang');
</script>