Changeset 19270 in webkit


Ignore:
Timestamp:
Jan 30, 2007 2:36:05 PM (17 years ago)
Author:
weinig
Message:

LayoutTests:

Reviewed by Darin (by way of Hyatt).

  • fast/table/inline-form-assert-expected.checksum: Added.
  • fast/table/inline-form-assert-expected.png: Added.
  • fast/table/inline-form-assert-expected.txt: Added.
  • fast/table/inline-form-assert.html: Added.

WebCore:

Reviewed by Darin (by way of Hyatt).

Test: fast/table/inline-form-assert.html

  • rendering/RenderContainer.cpp: (WebCore::RenderContainer::layout): Changed the assertion to ignore inlines.
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r19269 r19270  
     12007-01-30  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Darin (by way of Hyatt).
     4
     5        - test for http://bugs.webkit.org/show_bug.cgi?id=12373
     6          ASSERTION FAILURE: !child->needsLayout() on paypal.com
     7
     8        * fast/table/inline-form-assert-expected.checksum: Added.
     9        * fast/table/inline-form-assert-expected.png: Added.
     10        * fast/table/inline-form-assert-expected.txt: Added.
     11        * fast/table/inline-form-assert.html: Added.
     12
    1132007-01-30  Alexey Proskuryakov  <ap@webkit.org>
    214
  • trunk/WebCore/ChangeLog

    r19269 r19270  
     12007-01-30  Mitz Pettel  <mitz@webkit.org>
     2
     3        Reviewed by Darin (by way of Hyatt).
     4
     5        - fix http://bugs.webkit.org/show_bug.cgi?id=12373
     6          ASSERTION FAILURE: !child->needsLayout() on paypal.com
     7
     8        Test: fast/table/inline-form-assert.html
     9
     10        * rendering/RenderContainer.cpp:
     11        (WebCore::RenderContainer::layout): Changed the assertion to ignore inlines.
     12
    1132007-01-30  Alexey Proskuryakov  <ap@webkit.org>
    214
  • trunk/WebCore/rendering/RenderContainer.cpp

    r19027 r19270  
    477477    while (child) {
    478478        child->layoutIfNeeded();
    479         ASSERT(!child->needsLayout());
     479        ASSERT(child->isRenderInline() || !child->needsLayout());
    480480        child = child->nextSibling();
    481481    }
Note: See TracChangeset for help on using the changeset viewer.