WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
25135
text-overflow:ellipsis doesn't correctly handle cases where a text run and inline box have different directionality
https://bugs.webkit.org/show_bug.cgi?id=25135
Summary
text-overflow:ellipsis doesn't correctly handle cases where a text run and in...
Jeremy Moskovich
Reported
2009-04-10 15:20:52 PDT
.e.g.The case of an RTL div where the ellipsis is placed on to of an LTR text run,.
Attachments
Proposed fix
(20.27 KB, patch)
2009-04-15 12:47 PDT
,
Jeremy Moskovich
no flags
Details
Formatted Diff
Diff
second try
(30.49 KB, patch)
2009-05-01 15:51 PDT
,
Jeremy Moskovich
hyatt
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Jeremy Moskovich
Comment 1
2009-04-15 12:47:17 PDT
Created
attachment 29513
[details]
Proposed fix Added code to handle this case and ammended Layout Test appropriately.
Jeremy Moskovich
Comment 2
2009-04-15 12:52:36 PDT
Here's a slightly clearer description of the problem: .test { width: 180px; height: 20px; border: 1px solid black; white-space: nowrap; overflow: hidden; margin: 0 0 20px 0; } .ellipsis { text-overflow:ellipsis; } <div class="test ellipsis" dir=RTL> Hello </div> The directionality of the div dictates the side that the ellipsis will be drawn on, in this case the left side of the text. This case differs from what's currently handled in the code since the difference in directionality means we need to truncate from the START of the text run. Therefore the correct truncation should look something like: ...lo This is also true for the opposite case (ltr aligned div containg an RTL text run).
mitz
Comment 3
2009-04-15 13:18:45 PDT
> Therefore the correct truncation should look something like: > ...lo
It does not seem right for truncation to remove text from the middle and leave out the end.
Jeremy Moskovich
Comment 4
2009-04-15 13:29:32 PDT
This is how IE behaves. If you look at the Layout test after this patch is applied you'll see WebKit behaves identically to IE. Another reference (although, I'm not sure how authoratative), is this post:
http://markmail.org/message/r45kbqerj3sgisc2#query:text-overflow%3Aellipsis%20rtl+page:1+mid:oxndx7i3fnmjumrl+state:results
"Not sure that is what you are saying, but I think there should never be anything between the ellipsis and the boundary of the box: You lay out the lines using the bidi-algorithm, and then remove characters from the end of the *visual* lines:"
Jeremy Moskovich
Comment 5
2009-04-15 14:24:03 PDT
Perhaps this makes more sense to me in the context of multiple directional runs, so for example, let's look at two cases: The simple case - the directionality of the div and the inline element are identical: <div class="test ellipsis" dir=LTR> Hello World </div> This truncates to |Hello Wo...| Now, let's add some RTL text on the end: <div class="test ellipsis" dir=LTR> Hello World OLLEH </div> There are basically 2 options for truncating this: 1. |Hello World OL...| This is what the patch I've uploaded and IE do and seems like the right behavior to me. 2. |Hello World ...EH| Placing the ellipsis in the middle of the run rather than close to the box edge seems wrong to me. What do you think?
Jeremy Moskovich
Comment 6
2009-04-16 09:58:59 PDT
mitz: Could you confirm my interpretation of your comment so I can be sure we're on the same page before uploading a new patch? Do you mean that instead of truncating: Hello World OLLEH -> |Hello World OL...| We should truncate this as: Hello World OLLEH -> |Hello World EH...| ?
mitz
Comment 7
2009-04-17 14:47:44 PDT
(In reply to
comment #6
)
> mitz: Could you confirm my interpretation of your comment so I can be sure > we're on the same page before uploading a new patch? > > Do you mean that instead of truncating: > Hello World OLLEH -> |Hello World OL...| > > We should truncate this as: > Hello World OLLEH -> |Hello World EH...|
Yes, that preserves the beginning of the text rather than removing parts from the middle.
Jeremy Moskovich
Comment 8
2009-04-22 15:10:22 PDT
Comment on
attachment 29513
[details]
Proposed fix clear review bit, pending update patch.
Jeremy Moskovich
Comment 9
2009-05-01 15:51:47 PDT
Created
attachment 29951
[details]
second try Fix for the issues Mitz raised (thanks!). I've now bundled this together with the patches for another couple of bugs, since it doesn't really make sense to land them separately.
Dave Hyatt
Comment 10
2009-05-13 13:59:18 PDT
Comment on
attachment 29951
[details]
second try r=me
Dimitri Glazkov (Google)
Comment 11
2009-05-13 15:33:20 PDT
Landed as
http://trac.webkit.org/changeset/43664
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug