text-overflow-ellipsis-vertical-rtl-001.html (932B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Overflow: text-overflow: ellipsis vertical RTL</title> 4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-overflow-4/#ellipsis-scrolling"> 6 <link rel="match" href="reference/text-overflow-ellipsis-vertical-rtl-001-ref.html"> 7 <meta name="assert" content="Check that ellipsis is placed on the right position on the container boundaries in elements with 'text-overflow: ellipsis' in vertical writing mode and RTL."> 8 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 9 <style> 10 div { 11 font: 100px/1 Ahem; 12 height: 400px; 13 white-space: pre; 14 overflow: hidden; 15 text-overflow: ellipsis; 16 display: inline-block; 17 writing-mode: vertical-lr; 18 direction: rtl; 19 } 20 </style> 21 <p>The test passes if it matches the reference.</p> 22 <div>ppp</div> 23 <div>pppp</div> 24 <div>ppppp</div>