| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| div { | |
| text-overflow: ellipsis; | |
| overflow: hidden; | |
| white-space: nowrap; | |
| width: 200px; | |
| 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> | |
| <span></span><div>Lorem ipsum dolor sit consectetur adipisicing elitconsectetur adipisicing elitconsectetur</div> | |
| </body> | |
| </div> | |