RESOLVED FIXED 17921
Extra white space at the end of right-aligned or justified text with -webkit-line-break: after-white-space
https://bugs.webkit.org/show_bug.cgi?id=17921
Summary Extra white space at the end of right-aligned or justified text with -webkit-...
mitz
Reported 2008-03-18 13:52:30 PDT
Changing the white-space and -webkit-line-break properties in the attached test case should not affect the text at all, regardless of the text-align property value. Currently you get extra white space at the end of the lines (or no justification at all).
Attachments
Test case (1.73 KB, text/html)
2008-03-18 13:52 PDT, mitz
no flags
Correct trailing whitespace behavior (276.26 KB, patch)
2008-04-18 13:26 PDT, mitz
darin: review+
mitz
Comment 1 2008-03-18 13:52:46 PDT
Created attachment 19875 [details] Test case
mitz
Comment 2 2008-03-18 13:56:28 PDT
Note that since -webkit-line-break: after-white-space is the default for editable HTML, this affects editing.
mitz
Comment 3 2008-03-18 14:07:00 PDT
Firefox sort of agrees with WebKit's current behavior for pre-wrap, so maybe only -webkit-line-break needs fixing.
mitz
Comment 4 2008-04-18 13:26:49 PDT
Created attachment 20675 [details] Correct trailing whitespace behavior
Darin Adler
Comment 5 2008-04-18 13:38:38 PDT
Comment on attachment 20675 [details] Correct trailing whitespace behavior This code is pretty hard for me to follow, but probably necessarily so. I'd assert that run->m_previous is 0 in prependRun. 668 trailingSpaceWidth = (min(trailingSpaceRun->m_box->width(), (availableWidth - totWidth + 1) / 2)); This has an extra space and unneeded parentheses. 949 if (current != ' ' && current != '\t' && current != softHyphen && (current != '\n' || lastText->style()->preserveNewline()) && (current != noBreakSpace || lastText->style()->nbspMode() == NBNORMAL)) It seems like this line would read better if there was a helper function for it. 957 bool shouldSeparateSpaces = style()->direction() == RTL || trailingSpaceRun != start.lastRun() || trailingSpaceRun->m_level % 2 || textAlign != LEFT && textAlign != WEBKIT_LEFT && textAlign != TAAUTO; This is such a long condition that it might need some comments or be moved into an inline function or something. It also might be nice to make the common case faster -- I can't tell if this is so in the current version. r=me
mitz
Comment 6 2008-04-18 14:21:45 PDT
Note You need to log in before you can comment on or make changes to this bug.