<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
div { | |
text-overflow: ellipsis; | |
overflow: hidden; | |
white-space: nowrap; | |
width: 300px; | |
direction: rtl; | |
} | |
span { | |
width: 100px; | |
height: 20px; | |
float: left; | |
} | |
</style> | |
<body> | |
<p>This tests that ellipsis is placed correctly, when full truncation takes over in an rtl flow.</p> | |
<div><span></span>Lorem ipsum dolor sit consectetur adipisicing elitconsectetur adipisicing elitconsectetur</div> | |
</body> | |
</div> | |