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 '^This paragraph should be indented.<br>|', |
| 10 'This paragraph should not be indented.<br>', |
| 11 '</div>', |
| 12 ].join(''), |
| 13 'indent', |
| 14 [ |
| 15 '<div contenteditable>', |
| 16 '<blockquote style="margin: 0 0 0 40px; border: none; padding: 0
px;">', |
| 17 '^This paragraph should be indented.|', |
| 18 '</blockquote>', |
| 19 'This paragraph should not be indented.<br>', |
| 20 '</div>', |
| 21 ].join('')), |
| 22 'Indent on a selection that ends at the start of a paragraph.'); |
| 23 </script> |
OLD | NEW |