blob: 39895c2a22035a5005eec89f8f7a413dd2a4fb5c [file] [log] [blame]
<!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;
direction: rtl;
}
</style>
<p>crbug.com/642454: Select all text in mixed ltr-rtl in rtl flow. None of the dots in the ellipsis should be selected.</p>
<dl>
<dd id="selection_with_ellipsis">Lorem ipsum ינטרנט וכו' במקום הטקסט האמיתי הסופיעד שיהיה טקסט אמית</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, 66);
}, true);
</script>