Changeset 28299 in webkit
- Timestamp:
- Dec 1, 2007, 8:33:40 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r28260 r28299 1 2007-12-01 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - test for <rdar://problem/5619240> REGRESSION (Leopard-r28069): Reproducible crash with a Mootools-based calendar picker (jump to null in FrameView::layout) 6 7 * fast/dynamic/subtree-common-root-expected.txt: Added. 8 * fast/dynamic/subtree-common-root.html: Added. 9 1 10 2007-11-30 Eric Seidel <eric@webkit.org> 2 11 -
trunk/WebCore/ChangeLog
r28298 r28299 1 2007-12-01 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - fix <rdar://problem/5619240> REGRESSION (Leopard-r28069): Reproducible crash with a Mootools-based calendar picker (jump to null in FrameView::layout) 6 7 Test: fast/dynamic/subtree-common-root.html 8 9 * page/FrameView.cpp: 10 (WebCore::FrameView::layoutRoot): Added a parameter to let this method 11 return the layout root for a pending layout as well. 12 (WebCore::FrameView::scheduleRelayoutOfSubtree): Pass the new root 13 to markContainingBlocksForLayout(). Otherwise, 14 markContainingBlocksForLayout() could mark past the new root, if it had 15 previously been marked as having a normal child needing layout and then 16 was reached via a positioned child. 17 * page/FrameView.h: 18 * rendering/RenderBox.cpp: 19 (WebCore::RenderBox::calcWidth): 20 * rendering/RenderObject.cpp: 21 (WebCore::RenderObject::~RenderObject): Fixed the ASSERT so that 22 it would really catch deletion of the layout root. 23 (WebCore::RenderObject::markContainingBlocksForLayout): Added the 24 newRoot parameter, which tells this method where to stop marking. 25 * rendering/RenderObject.h: 26 1 27 2007-12-01 Dan Bernstein <mitz@apple.com> 2 28 -
trunk/WebCore/page/FrameView.cpp
r27952 r28299 285 285 } 286 286 287 RenderObject* FrameView::layoutRoot( ) const288 { 289 return layoutPending() ? 0 : d->layoutRoot;287 RenderObject* FrameView::layoutRoot(bool onlyDuringLayout) const 288 { 289 return onlyDuringLayout && layoutPending() ? 0 : d->layoutRoot; 290 290 } 291 291 … … 738 738 if (isObjectAncestorContainerOf(d->layoutRoot, o)) { 739 739 // Keep the current root 740 o->markContainingBlocksForLayout(false );740 o->markContainingBlocksForLayout(false, d->layoutRoot); 741 741 } else if (d->layoutRoot && isObjectAncestorContainerOf(o, d->layoutRoot)) { 742 742 // Re-root at o 743 d->layoutRoot->markContainingBlocksForLayout(false );743 d->layoutRoot->markContainingBlocksForLayout(false, o); 744 744 d->layoutRoot = o; 745 745 } else { -
trunk/WebCore/page/FrameView.h
r27952 r28299 77 77 bool layoutPending() const; 78 78 79 RenderObject* layoutRoot( ) const;79 RenderObject* layoutRoot(bool onlyDuringLayout = false) const; 80 80 int layoutCount() const; 81 81 -
trunk/WebCore/rendering/RenderBox.cpp
r28226 r28299 1082 1082 1083 1083 // If layout is limited to a subtree, the subtree root's width does not change. 1084 if (node() && view()->frameView() && view()->frameView()->layoutRoot( ) == this)1084 if (node() && view()->frameView() && view()->frameView()->layoutRoot(true) == this) 1085 1085 return; 1086 1086 -
trunk/WebCore/rendering/RenderObject.cpp
r28084 r28299 202 202 RenderObject::~RenderObject() 203 203 { 204 ASSERT(!node() || !document()->frame()->view() || document()->frame()->view()->layoutRoot() != this);204 ASSERT(!node() || documentBeingDestroyed() || !document()->frame()->view() || document()->frame()->view()->layoutRoot() != this); 205 205 #ifndef NDEBUG 206 206 --RenderObjectCounter::count; … … 719 719 } 720 720 721 void RenderObject::markContainingBlocksForLayout(bool scheduleRelayout) 722 { 721 void RenderObject::markContainingBlocksForLayout(bool scheduleRelayout, RenderObject* newRoot) 722 { 723 ASSERT(!scheduleRelayout || !newRoot); 724 723 725 RenderObject* o = container(); 724 726 RenderObject* last = this; … … 736 738 o->m_normalChildNeedsLayout = true; 737 739 } 740 741 if (o == newRoot) 742 return; 738 743 739 744 last = o; -
trunk/WebCore/rendering/RenderObject.h
r28127 r28299 378 378 379 379 virtual void markAllDescendantsWithFloatsForLayout(RenderObject* floatToRemove = 0); 380 void markContainingBlocksForLayout(bool scheduleRelayout = true );380 void markContainingBlocksForLayout(bool scheduleRelayout = true, RenderObject* newRoot = 0); 381 381 void setNeedsLayout(bool b, bool markParents = true); 382 382 void setChildNeedsLayout(bool b, bool markParents = true);
Note:
See TracChangeset
for help on using the changeset viewer.