blob: a1375f5c5b2b99adc5b951bb9578c307b5821560 [file] [log] [blame]
<!DOCTYPE html>
<!--
| The "text-overflow" property only renders when the block container
| element has "overflow" set to a value other than "visible".
| https://www.w3.org/TR/css3-ui/#propdef-text-overflow
-->
<html>
<head>
<meta charset="utf-8">
<style>
body {
margin: 0px 0px 0px 125px;
font-family: Roboto;
font-size: 20px;
}
div {
white-space: nowrap;
width: 200px;
overflow: visible;
text-overflow: ellipsis;
border: 1px solid #000000;
}
</style>
</head>
<body>
<div>
<div dir="ltr">This is some long text that will not fit</div>
<div dir="ltr"><span>This is some long text that will not fit</span></div>
<div dir="rtl">This is some long text that will not fit</div>
<div dir="rtl"><span>This is some long text that will not fit</span></div>
</div>
</body>
</html>