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 direction: rtl; | |
| 13 } | |
| 14 </style> | |
| 15 <body> | |
| 16 <p>There should be no dots above the ellipsis.</p> | |
| 17 <div>هذا هو الاختبار</div> | |
| 18 <div>abcd efg hijk<div> | |
| 19 <div>كتاب ألف ليلة وليلة</div> | |
| 20 <div dir="rtl">abcd efg hijk<div> | |
|
Dominik Röttsches
2014/11/14 10:10:47
Sorry, now the direction is redundant (since it's
Habib Virji
2014/11/24 11:52:30
Make sense, will try to upload a test covering the
| |
| 21 </body> | |
| OLD | NEW |