Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE> | |
| 2 <meta charset='utf-8'> | |
| 3 <title>Emphasis Mark on Complex Text with Ellipsis</title> | |
| 4 <style> | |
| 5 div { | |
| 6 -webkit-text-emphasis: dot; | |
| 7 font-size: 36pt; | |
| 8 width: 220px; | |
| 9 white-space: nowrap; | |
| 10 overflow: hidden; | |
| 11 text-overflow: ellipsis; | |
| 12 } | |
| 13 </style> | |
| 14 <body> | |
| 15 <p>There should be no dots above the ellipsis.</p> | |
| 16 <div dir="rtl">هذا هو الاختبار</div> | |
| 17 <div dir="ltr">هذا هو الاختبار</div> | |
| 18 <div dir="rtl">abcd efg hijk</div> | |
| 19 <div dir="ltr">abcd efg hijk</div> | |
| 20 <div dir="rtl">كتاب ألف ليلة وليلة</div> | |
| 21 <div dir="ltr">كتاب ألف ليلة وليلة</div> | |
| 22 </body> | |
| OLD | NEW |