Changeset 20200 in webkit


Ignore:
Timestamp:
Mar 14, 2007 6:22:19 PM (17 years ago)
Author:
weinig
Message:

LayoutTests:

Reviewed by Hyatt.

  • fast/text/whitespace/pre-wrap-last-char-expected.checksum: Added.
  • fast/text/whitespace/pre-wrap-last-char-expected.png: Added.
  • fast/text/whitespace/pre-wrap-last-char-expected.txt: Added.
  • fast/text/whitespace/pre-wrap-last-char.html: Added.

WebCore:

Reviewed by Hyatt.

Test: fast/text/whitespace/pre-wrap-last-char.html

  • rendering/bidi.cpp: (WebCore::RenderBlock::findNextLineBreak): Undid the change from r15617.
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r20191 r20200  
     12007-03-14  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Hyatt.
     4
     5        - test for http://bugs.webkit.org/show_bug.cgi?id=13072
     6          REGRESSION (r15617): white-space: pre-wrap breaks off the last character of a wide word
     7
     8        * fast/text/whitespace/pre-wrap-last-char-expected.checksum: Added.
     9        * fast/text/whitespace/pre-wrap-last-char-expected.png: Added.
     10        * fast/text/whitespace/pre-wrap-last-char-expected.txt: Added.
     11        * fast/text/whitespace/pre-wrap-last-char.html: Added.
     12
    1132007-03-14  Justin Garcia  <justin.garcia@apple.com>
    214
  • trunk/WebCore/ChangeLog

    r20199 r20200  
     12007-03-14  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Hyatt.
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=13072
     6          REGRESSION (r15617): white-space: pre-wrap breaks off the last character of a wide word
     7
     8        Test: fast/text/whitespace/pre-wrap-last-char.html
     9
     10        * rendering/bidi.cpp:
     11        (WebCore::RenderBlock::findNextLineBreak): Undid the change from r15617.
     12
    1132007-03-14  David Hyatt  <hyatt@apple.com>
    214
  • trunk/WebCore/rendering/bidi.cpp

    r19855 r20200  
    25832583    if (lBreak == start && !lBreak.obj->isBR()) {
    25842584        // we just add as much as possible
    2585         if (shouldPreserveNewline(this)) {
     2585        if (style()->whiteSpace() == PRE) {
    25862586            // FIXME: Don't really understand this case.
    25872587            if (pos != 0) {
Note: See TracChangeset for help on using the changeset viewer.