blob: 865c0c66cc278701677d94daa6f7a9b66c1d4dd2 [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><br></div><blockquote>|foo</blockquote></div>',
'delete',
'<div contenteditable><blockquote>|foo</blockquote></div>'),
'Hit backspace at beginning of BLOCKQUOTE');
test(() => assert_selection(
'<div contenteditable><div><br></div><ul><li>|foo</li></ul></div>',
'delete',
'<div contenteditable><ul><li>|foo</li></ul></div>'),
'Hit backspace at beginning of LI');
</script>