Changeset 251680 in webkit for trunk/Source/WebCore/rendering/RenderFrameSet.cpp
- Timestamp:
- Oct 28, 2019, 4:09:39 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/rendering/RenderFrameSet.cpp
r239645 r251680 526 526 527 527 // has to be resized and itself resize its contents 528 if (width != child->width() || height != child->height()) { 529 child->setWidth(width); 530 child->setHeight(height); 528 child->setWidth(width); 529 child->setHeight(height); 531 530 #if PLATFORM(IOS_FAMILY) 532 533 531 // FIXME: Is this iOS-specific? 532 child->setNeedsLayout(MarkOnlyThis); 534 533 #else 535 534 child->setNeedsLayout(); 536 535 #endif 537 child->layout(); 538 } 536 child->layout(); 539 537 540 538 xPos += width + borderThickness;
Note:
See TracChangeset
for help on using the changeset viewer.