Bug 63894

Summary: Incorrect text wrap
Product: WebKit Reporter: Cameron Wong <hgneng>
Component: WebCore Misc.Assignee: Nobody <webkit-unassigned>
Status: RESOLVED DUPLICATE    
Severity: Normal CC: ap, darin, fantasai.bugs, mitz
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   

Cameron Wong
Reported 2011-07-04 02:07:56 PDT
Hello, Here is the test code to reproduce the problem: <html><body><div style='width:2px;border:solid 1px red'><span>0</span><span>&#27721;1</span></div></body></html> In theory, the text should be wrapped before "&#27721". But Webkit wrap it after "&#27721". I think the problem lies in function nextBreakablePosition in webcore/rendering/break_lines.cpp. nextBreakablePosition will never return index of 0, which it will break at least after the first character. However, it will not break at the end of an inline element, which may be because it is not certain that whether next character is &nbsp; In function nextBreakablePosition, the initial value of lastCh is 0 if it's at the beginning of a RenderText. UChar lastCh = pos > 0 ? str[pos - 1] : 0; I think passing the last character as an argument of this function will solve this problem. We can update the last character in RenderBlock::findNextLineBreak What do you think?
Attachments
Alexey Proskuryakov
Comment 2 2024-05-06 14:43:37 PDT
*** This bug has been marked as a duplicate of bug 17427 ***
Note You need to log in before you can comment on or make changes to this bug.