Changeset 26746 in webkit
- Timestamp:
- Oct 18, 2007, 9:21:34 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r26745 r26746 1 2007-10-18 Dan Bernstein <dan.bernstein@apple.com> 2 3 Reviewed by Nikolas Zimmermann. 4 5 - test for http://bugs.webkit.org/show_bug.cgi?id=15367 6 Assertion failure inspecting a document including soft hyphen code (0xad) 7 8 * fast/text/word-break-soft-hyphen.html: Added. 9 * platform/mac/fast/text/word-break-soft-hyphen-expected.checksum: Added. 10 * platform/mac/fast/text/word-break-soft-hyphen-expected.png: Added. 11 * platform/mac/fast/text/word-break-soft-hyphen-expected.txt: Added. 12 1 13 2007-10-18 Nikolas Zimmermann <zimmermann@kde.org> 2 14 -
trunk/WebCore/ChangeLog
r26745 r26746 1 2007-10-18 Dan Bernstein <dan.bernstein@apple.com> 2 3 Reviewed by Nikolas Zimmermann. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=15367 6 Assertion failure inspecting a document including soft hyphen code (0xad) 7 8 Test: fast/text/word-break-soft-hyphen.html 9 10 * rendering/RenderText.cpp: 11 (WebCore::RenderText::calcPrefWidths): Changed to treat soft hyphens as 12 word boundaries. This fixes the bug and is consistent with the fact that 13 run rounding does occur at soft hyphens. 14 1 15 2007-10-18 Nikolas Zimmermann <zimmermann@kde.org> 2 16 -
trunk/WebCore/rendering/RenderText.cpp
r26676 r26746 583 583 584 584 // Ignore spaces and soft hyphens 585 if (ignoringSpaces || c == softHyphen) {585 if (ignoringSpaces) { 586 586 ASSERT(lastWordBoundary == i); 587 587 lastWordBoundary++; 588 continue; 589 } else if (c == softHyphen) { 590 currMaxWidth += widthFromCache(f, lastWordBoundary, i - lastWordBoundary, leadWidth + currMaxWidth); 591 lastWordBoundary = i + 1; 588 592 continue; 589 593 }
Note:
See TracChangeset
for help on using the changeset viewer.