Changeset 30345 in webkit
- Timestamp:
- Feb 17, 2008, 12:50:32 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r30342 r30345 1 2008-02-17 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - test for http://bugs.webkit.org/show_bug.cgi?id=17033 6 <rdar://problem/5709315> REGRESSION: Really long <option> causes unnecessary page scroll bars to accommodate content 7 8 * fast/forms/control-clip-overflow.html: Added. 9 * platform/mac/fast/forms/control-clip-overflow-expected.checksum: Added. 10 * platform/mac/fast/forms/control-clip-overflow-expected.png: Added. 11 * platform/mac/fast/forms/control-clip-overflow-expected.txt: Added. 12 1 13 2008-02-16 Dan Bernstein <mitz@apple.com> 2 14 -
trunk/WebCore/ChangeLog
r30344 r30345 1 2008-02-17 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=17033 6 <rdar://problem/5709315> REGRESSION: Really long <option> causes unnecessary page scroll bars to accommodate content 7 8 Test: fast/forms/control-clip-overflow.html 9 10 * rendering/RenderFlow.cpp: 11 (WebCore::RenderFlow::lowestPosition): Account for control clipping. 12 (WebCore::RenderFlow::rightmostPosition): Ditto. 13 (WebCore::RenderFlow::leftmostPosition): Ditto. 14 1 15 2008-02-16 Oliver Hunt <oliver@apple.com> 2 16 -
trunk/WebCore/rendering/RenderFlow.cpp
r27051 r30345 551 551 { 552 552 ASSERT(!isInlineFlow()); 553 if (!includeOverflowInterior && hasOverflowClip())553 if (!includeOverflowInterior && (hasOverflowClip() || hasControlClip())) 554 554 return includeSelf && m_width > 0 ? overflowHeight(false) : 0; 555 555 … … 575 575 { 576 576 ASSERT(!isInlineFlow()); 577 if (!includeOverflowInterior && hasOverflowClip())577 if (!includeOverflowInterior && (hasOverflowClip() || hasControlClip())) 578 578 return includeSelf && m_height > 0 ? overflowWidth(false) : 0; 579 579 … … 599 599 { 600 600 ASSERT(!isInlineFlow()); 601 if (!includeOverflowInterior && hasOverflowClip())601 if (!includeOverflowInterior && (hasOverflowClip() || hasControlClip())) 602 602 return includeSelf && m_height > 0 ? overflowLeft(false) : m_width; 603 603
Note:
See TracChangeset
for help on using the changeset viewer.