| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <script src="../../resources/testharness.js"></script> |
| 3 <script src="../../resources/testharnessreport.js"></script> |
| 4 <script src="../assert_selection.js"></script> |
| 5 <script> |
| 6 test(() => assert_selection( |
| 7 '<div contenteditable><div><br></div><blockquote>|foo</blockquote></div>', |
| 8 'delete', |
| 9 '<div contenteditable><blockquote>|foo</blockquote></div>'), |
| 10 'Hit backspace at beginning of BLOCKQUOTE'); |
| 11 |
| 12 test(() => assert_selection( |
| 13 '<div contenteditable><div><br></div><ul><li>|foo</li></ul></div>', |
| 14 'delete', |
| 15 '<div contenteditable><ul><li>|foo</li></ul></div>'), |
| 16 'Hit backspace at beginning of LI'); |
| 17 </script> |
| OLD | NEW |