| Index: LayoutTests/fast/text/international/mixed-directionality-selection.html
|
| diff --git a/LayoutTests/fast/text/international/mixed-directionality-selection.html b/LayoutTests/fast/text/international/mixed-directionality-selection.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b9f81c7de080d2f1fdcdc0c1798ea8c2a149aa47
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/text/international/mixed-directionality-selection.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| + <head>
|
| + <meta charset="utf-8">
|
| + <style>
|
| + input {
|
| + width: 200px;
|
| + font-size: 64px;
|
| + }
|
| + </style>
|
| + </head>
|
| + <body>
|
| + <input dir="rtl" value="[[مقاله]]">
|
| + <p>
|
| + The last character (and only the last character) should be
|
| + selected in the text box above.
|
| + </p>
|
| + <script>
|
| + var el = document.getElementsByTagName('input')[0];
|
| + el.setSelectionRange(0, 1);
|
| + </script>
|
| + </body>
|
| +</html>
|
|
|