blob: 1b7667d6c90fdcae84ae1771efb2d57a125505c3 [file] [log] [blame]
<!doctype html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../assert_selection.js"></script>
<script>
// This test pushes a horizontal rule into an unordered list with
// InsertUnorderedList. This demonstrates what might be a bug:
// the horizontal rule appears before the list marker in the render tree.
test(() => assert_selection(
'<div contenteditable>|<hr></div>',
'insertUnorderedList',
'<div contenteditable><ul><li>|<hr></li></ul></div>'),
'Push HR into unordered list');
</script>