RESOLVED FIXED 219488
Right aligned text with line clamp does not show an ellipsis.
https://bugs.webkit.org/show_bug.cgi?id=219488
Summary Right aligned text with line clamp does not show an ellipsis.
Olga Giza
Reported 2020-12-03 05:27:37 PST
Combination of line-clamp and text-align: right is not working properly. Ellipsis not displayed (it is outside of the container - we can see that when overflow: hidden prop is removed) Example: ``` <style> p { width: 200px; text-overflow: ellipsis; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; display: -webkit-box; white-space: normal; text-align: right; } </style> <p> long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text long text </p> ``` Might be related to https://bugs.webkit.org/show_bug.cgi?id=219100
Attachments
test case (622 bytes, text/html)
2020-12-07 11:46 PST, Smoley
no flags
rendering in Safari, firefox, chrome (69.87 KB, image/png)
2022-08-15 19:11 PDT, Karl Dubost
no flags
Smoley
Comment 1 2020-12-07 11:46:33 PST
Created attachment 415569 [details] test case
Smoley
Comment 2 2020-12-07 11:52:49 PST
Thanks for filing, I can reproduce this on Safari 13.1.3 - STP 116.
Radar WebKit Bug Importer
Comment 3 2020-12-07 11:53:01 PST
Ilya Tratseuski
Comment 4 2021-05-28 02:16:44 PDT
This bug also reproducible for RTL languages (such as Arabic or Hebrew) with dir attribute set to 'rtl' or 'auto' and text-align: left
Karl Dubost
Comment 5 2022-08-15 19:11:56 PDT
Created attachment 461655 [details] rendering in Safari, firefox, chrome Tested in Firefox Nightly 105.0a1 Google Chrome Canary 106.0.5242.0 Safari 16.0 Chrome doesn't show any ellipsis
Karl Dubost
Comment 6 2022-08-15 19:16:50 PDT
As for Comment #4, this is different, see Bug 219817 But fwiw, The bug here as reported initially seemed to say that there was no ellipsis. Currently there is as you can see in https://bugs.webkit.org/attachment.cgi?id=461655 So this bug seems to be fixed?
Note You need to log in before you can comment on or make changes to this bug.