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 <div id="log"></div> |
| 6 <script> |
| 7 test(() => { |
| 8 assert_selection( |
| 9 '<div contenteditable><blockquote>|<br></blockquote></div>', |
| 10 'indent', |
| 11 '<div contenteditable><blockquote style="margin: 0 0 0 40px; border: none; p
adding: 0px;"><blockquote>|<br></blockquote></blockquote></div>'); |
| 12 }, 'indent empty <blockquote>'); |
| 13 test(() => { |
| 14 assert_selection( |
| 15 '<div contenteditable><blockquote>1|</blockquote></div>', |
| 16 'indent', |
| 17 '<div contenteditable><blockquote style="margin: 0 0 0 40px; border: none; p
adding: 0px;"><blockquote>1|</blockquote></blockquote></div>'); |
| 18 }, 'indent <blockquote> with text'); |
| 19 </script> |
OLD | NEW |