| Index: third_party/WebKit/LayoutTests/editing/selection/select-text-overflow-ellipsis-mixed-in-ltr.html
|
| diff --git a/third_party/WebKit/LayoutTests/editing/selection/select-text-overflow-ellipsis-mixed-in-ltr.html b/third_party/WebKit/LayoutTests/editing/selection/select-text-overflow-ellipsis-mixed-in-ltr.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..356159b593c8fc0735d4bc7187dd3b9030782cc1
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/editing/selection/select-text-overflow-ellipsis-mixed-in-ltr.html
|
| @@ -0,0 +1,25 @@
|
| +<!DOCTYPE html>
|
| +<meta charset=utf-8>
|
| +<style>
|
| +dl {
|
| + max-width: 20em;
|
| + margin: auto;
|
| + font-size: 120%;
|
| + white-space: nowrap;
|
| +}
|
| +dd {
|
| + overflow: hidden;
|
| + text-overflow: ellipsis;
|
| + text-decoration: inherit;
|
| +}
|
| +</style>
|
| +<p>crbug.com/634445: Select all text in mixed ltr-rtl in ltr flow.</p>
|
| +<dl>
|
| + <dd id="selection_with_ellipsis">Lorem לורם איפסום הוא כינוי לטקסט חסר משמעות לחלוטין </dd>
|
| +</dl>
|
| +<script src="../../resources/run-after-layout-and-paint.js"></script>
|
| +<script>
|
| +runAfterLayoutAndPaint(function() {
|
| + getSelection().setBaseAndExtent(selection_with_ellipsis.firstChild, 0, selection_with_ellipsis.firstChild, 155);
|
| + }, true);
|
| +</script>
|
|
|