Changeset 30590 in webkit
- Timestamp:
- Feb 25, 2008, 10:47:43 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r30587 r30590 1 2008-02-25 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Sam Weinig. 4 5 - test for http://bugs.webkit.org/show_bug.cgi?id=17152 6 Paragraphs indented with :first-letter and text-align CSS render incorrectly 7 8 * fast/text/apply-start-width-after-skipped-text.html: Added. 9 * platform/mac/fast/text/apply-start-width-after-skipped-text-expected.checksum: Added. 10 * platform/mac/fast/text/apply-start-width-after-skipped-text-expected.png: Added. 11 * platform/mac/fast/text/apply-start-width-after-skipped-text-expected.txt: Added. 12 1 13 2008-02-25 Beth Dakin <bdakin@apple.com> 2 14 -
trunk/WebCore/ChangeLog
r30589 r30590 1 2008-02-25 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Sam Weinig. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=17152 6 Paragraphs indented with :first-letter and text-align CSS render incorrectly 7 8 Test: fast/text/apply-start-width-after-skipped-text.html 9 10 * rendering/bidi.cpp: 11 (WebCore::RenderBlock::findNextLineBreak): Improved the logic for when 12 to figure in the padding, border and margin before a text node when the 13 line begins inside a text node. 14 1 15 2008-02-25 Kevin Ollivier <kevino@theolliviers.com> 2 16 -
trunk/WebCore/rendering/bidi.cpp
r30575 r30590 1354 1354 BidiIterator RenderBlock::findNextLineBreak(BidiIterator &start, BidiState &bidi) 1355 1355 { 1356 bool appliedStartWidth = start.pos > 0; 1357 1356 1358 // eliminate spaces at beginning of line 1357 1359 int width = skipWhitespace(start, bidi); … … 1543 1545 tmpW += o->width() + o->marginLeft() + o->marginRight() + inlineWidth(o); 1544 1546 } else if (o->isText()) { 1547 if (!pos) 1548 appliedStartWidth = false; 1549 1545 1550 RenderText* t = static_cast<RenderText*>(o); 1546 1551 … … 1555 1560 int lastSpaceWordSpacing = 0; 1556 1561 1557 bool appliedStartWidth = pos > 0; // If the span originated on a previous line,1558 // then assume the start width has been applied.1559 1562 int wrapW = tmpW + inlineWidth(o, !appliedStartWidth, true); 1560 1563 int charWidth = 0;
Note:
See TracChangeset
for help on using the changeset viewer.