Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
|
yosin_UTC9
2016/07/22 01:21:55
Could you put this test file in "LayoutTests/editi
joone
2016/07/22 03:29:54
Done.
| |
| 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 true', | |
|
yosin_UTC9
2016/07/22 01:21:55
nit: I think we don't need to have |true|, since "
joone
2016/07/22 03:29:54
Done.
| |
| 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 true', | |
|
yosin_UTC9
2016/07/22 01:21:55
nit: I think we don't need to have |true|, since "
joone
2016/07/22 03:29:54
Done.
| |
| 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 |