chromium/third_party/blink/web_tests/editing/selection/extend/extend_selection_10_rtl_forward_character.html

<!doctype html>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<script src="../../assert_selection.js"></script>
<script>
selection_test(
  '<div contenteditable dir="rtl">|\nabc \u05D0\u05D1\u05D2 xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\n^a|bc \u05D0\u05D1\u05D2 xyz\n</div>',
  '10-0 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\n|abc \u05D0\u05D1\u05D2 xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\n^a|bc \u05D0\u05D1\u05D2 xyz\n</div>',
  '10-1 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\na|bc \u05D0\u05D1\u05D2 xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\na^b|c \u05D0\u05D1\u05D2 xyz\n</div>',
  '10-2 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nab|c \u05D0\u05D1\u05D2 xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nab^c| \u05D0\u05D1\u05D2 xyz\n</div>',
  '10-3 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc| \u05D0\u05D1\u05D2 xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc^ |\u05D0\u05D1\u05D2 xyz\n</div>',
  '10-4 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc |\u05D0\u05D1\u05D2 xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc ^\u05D0|\u05D1\u05D2 xyz\n</div>',
  '10-5 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc \u05D0|\u05D1\u05D2 xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc \u05D0^\u05D1|\u05D2 xyz\n</div>',
  '10-6 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1|\u05D2 xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1^\u05D2| xyz\n</div>',
  '10-7 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2| xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2^ |xyz\n</div>',
  '10-8 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2 |xyz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2 ^x|yz\n</div>',
  '10-9 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2 x|yz\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2 x^y|z\n</div>',
  '10-10 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2 xy|z\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2 xy^z|\n</div>',
  '10-11 rtl forward character');

selection_test(
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2 xyz|\n</div>',
  selection => selection.modify('extend', 'forward', 'character'),
  '<div contenteditable dir="rtl">\nabc \u05D0\u05D1\u05D2 xyz|\n</div>',
  '10-12 rtl forward character');
</script>