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 [ |
| 8 '<div contenteditable>', |
| 9 '<span> test <map name=m><area coords="0,0,0,0" href=""></map> t
est| </span>', |
| 10 '</div>', |
| 11 ].join(''), |
| 12 selection => { |
| 13 for (var i = 0; i < 9; ++i) |
| 14 selection.document.execCommand('delete'); |
| 15 }, |
| 16 // BR is a placeholder. |
| 17 '<div contenteditable>|<br></div>'), |
| 18 'Delete command deletes MAP and AREA too.'); |
| 19 </script> |
OLD | NEW |