blob: bf01b6c376d85480c9a374b1cdc3f63353647169 [file] [log] [blame]
<!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 efd dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\n^a|bc efd dabeb\n</div>',
'13-0 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\n|abc efd dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\n^a|bc efd dabeb\n</div>',
'13-1 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\na|bc efd dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\na^b|c efd dabeb\n</div>',
'13-2 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nab|c efd dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nab^c| efd dabeb\n</div>',
'13-3 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc| efd dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc^ |efd dabeb\n</div>',
'13-4 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc |efd dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc ^e|fd dabeb\n</div>',
'13-5 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc e|fd dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc e^f|d dabeb\n</div>',
'13-6 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc ef|d dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc ef^d| dabeb\n</div>',
'13-7 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc efd| dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc efd^ |dabeb\n</div>',
'13-8 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc efd |dabeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc efd ^d|abeb\n</div>',
'13-9 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc efd d|abeb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc efd d^a|beb\n</div>',
'13-10 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc efd da|beb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc efd da^b|eb\n</div>',
'13-11 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc efd dab|eb\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc efd dab^e|b\n</div>',
'13-12 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc efd dabe|b\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc efd dabe^b|\n</div>',
'13-13 rtl forward character');
selection_test(
'<div contenteditable dir="rtl">\nabc efd dabeb|\n</div>',
selection => selection.modify('extend', 'forward', 'character'),
'<div contenteditable dir="rtl">\nabc efd dabeb|\n</div>',
'13-14 rtl forward character');
</script>