Changeset 156876 in webkit for trunk/Source/WebCore/rendering/RenderFrameSet.cpp
- Timestamp:
- Oct 3, 2013, 9:04:35 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderFrameSet.cpp
r156822 r156876 489 489 } 490 490 491 setNeedsLayout(false);491 clearNeedsLayout(); 492 492 } 493 493 … … 514 514 child->setWidth(width); 515 515 child->setHeight(height); 516 child->setNeedsLayout( true);516 child->setNeedsLayout(); 517 517 child->layout(); 518 518 } … … 531 531 child->setWidth(0); 532 532 child->setHeight(0); 533 child-> setNeedsLayout(false);533 child->clearNeedsLayout(); 534 534 } 535 535 } … … 568 568 child->setHeight(height); 569 569 570 child->setNeedsLayout( true);570 child->setNeedsLayout(); 571 571 572 572 if (child->isFrameSet()) … … 612 612 613 613 // update to final size 614 child->setNeedsLayout( true);614 child->setNeedsLayout(); 615 615 if (child->isFrameSet()) 616 616 toRenderFrameSet(child)->layout(); … … 639 639 child->setWidth(0); 640 640 child->setHeight(0); 641 child-> setNeedsLayout(false);641 child->clearNeedsLayout(); 642 642 } 643 643 } … … 671 671 axis.m_deltas[axis.m_splitBeingResized - 1] += delta; 672 672 axis.m_deltas[axis.m_splitBeingResized] -= delta; 673 setNeedsLayout( true);673 setNeedsLayout(); 674 674 } 675 675
Note:
See TracChangeset
for help on using the changeset viewer.