Changeset 30590 in webkit


Ignore:
Timestamp:
Feb 25, 2008, 10:47:43 PM (17 years ago)
Author:
mitz@apple.com
Message:

WebCore:

Reviewed by Sam Weinig.

Test: fast/text/apply-start-width-after-skipped-text.html

  • rendering/bidi.cpp: (WebCore::RenderBlock::findNextLineBreak): Improved the logic for when to figure in the padding, border and margin before a text node when the line begins inside a text node.

LayoutTests:

Reviewed by Sam Weinig.

  • fast/text/apply-start-width-after-skipped-text.html: Added.
  • platform/mac/fast/text/apply-start-width-after-skipped-text-expected.checksum: Added.
  • platform/mac/fast/text/apply-start-width-after-skipped-text-expected.png: Added.
  • platform/mac/fast/text/apply-start-width-after-skipped-text-expected.txt: Added.
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r30587 r30590  
     12008-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
    1132008-02-25  Beth Dakin  <bdakin@apple.com>
    214
  • trunk/WebCore/ChangeLog

    r30589 r30590  
     12008-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
    1152008-02-25  Kevin Ollivier  <kevino@theolliviers.com>
    216
  • trunk/WebCore/rendering/bidi.cpp

    r30575 r30590  
    13541354BidiIterator RenderBlock::findNextLineBreak(BidiIterator &start, BidiState &bidi)
    13551355{
     1356    bool appliedStartWidth = start.pos > 0;
     1357
    13561358    // eliminate spaces at beginning of line
    13571359    int width = skipWhitespace(start, bidi);
     
    15431545                tmpW += o->width() + o->marginLeft() + o->marginRight() + inlineWidth(o);
    15441546        } else if (o->isText()) {
     1547            if (!pos)
     1548                appliedStartWidth = false;
     1549
    15451550            RenderText* t = static_cast<RenderText*>(o);
    15461551
     
    15551560            int lastSpaceWordSpacing = 0;
    15561561
    1557             bool appliedStartWidth = pos > 0; // If the span originated on a previous line,
    1558                                               // then assume the start width has been applied.
    15591562            int wrapW = tmpW + inlineWidth(o, !appliedStartWidth, true);
    15601563            int charWidth = 0;
Note: See TracChangeset for help on using the changeset viewer.