Changeset 31313 in webkit
- Timestamp:
- Mar 26, 2008, 7:33:07 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 12 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r31311 r31313 1 2008-03-26 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - tests for http://bugs.webkit.org/show_bug.cgi?id=17994 6 REGRESSION (523-525+) View not updated when changing CSS size via JavaScript 7 - and http://bugs.webkit.org/show_bug.cgi?id=18063 8 REGRESSION (r31250): Small bug that just cropped up in WebKit r31275 9 10 * fast/repaint/subtree-root-clip-2.html: Added. 11 * fast/repaint/subtree-root-clip-3.html: Added. 12 * fast/repaint/subtree-root-clip.html: Added. 13 * platform/mac/fast/repaint/subtree-root-clip-2-expected.checksum: Added. 14 * platform/mac/fast/repaint/subtree-root-clip-2-expected.png: Added. 15 * platform/mac/fast/repaint/subtree-root-clip-2-expected.txt: Added. 16 * platform/mac/fast/repaint/subtree-root-clip-3-expected.checksum: Added. 17 * platform/mac/fast/repaint/subtree-root-clip-3-expected.png: Added. 18 * platform/mac/fast/repaint/subtree-root-clip-3-expected.txt: Added. 19 * platform/mac/fast/repaint/subtree-root-clip-expected.checksum: Added. 20 * platform/mac/fast/repaint/subtree-root-clip-expected.png: Added. 21 * platform/mac/fast/repaint/subtree-root-clip-expected.txt: Added. 22 1 23 2008-03-24 Maciej Stachowiak <mjs@apple.com> 2 24 -
trunk/WebCore/ChangeLog
r31312 r31313 1 2008-03-26 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=17994 6 REGRESSION (523-525+) View not updated when changing CSS size via JavaScript 7 - fix http://bugs.webkit.org/show_bug.cgi?id=18063 8 REGRESSION (r31250): Small bug that just cropped up in WebKit r31275 9 10 Tests: fast/repaint/subtree-root-clip.html 11 fast/repaint/subtree-root-clip-2.html 12 fast/repaint/subtree-root-clip-3.html 13 14 * rendering/LayoutState.cpp: 15 (WebCore::LayoutState::LayoutState): Changed to not set an initial clip. 16 Since the root is clipping, there is no need to set a clip, and setting 17 the clip based on the container was wrong because often the root was 18 not included in the container's overflow rect because it had its own 19 layer. 20 * rendering/RenderBox.cpp: 21 (WebCore::RenderBox::absolutePosition): Removed code that added table 22 cell's extra top offset only in the slow (recursive) code path. 23 * rendering/RenderTableCell.cpp: 24 (WebCore::RenderTableCell::absolutePosition): Added code to add the 25 extra top offset in both code paths. 26 1 27 2008-03-26 Simon Hausmann <hausmann@webkit.org> 2 28 -
trunk/WebCore/rendering/LayoutState.cpp
r29663 r31313 82 82 83 83 LayoutState::LayoutState(RenderObject* root) 84 : m_clipped(false) 84 85 { 85 86 RenderObject* container = root->container(); 86 m_clipped = true;87 m_clipRect = container->absoluteClippedOverflowRect();88 87 int x = 0; 89 88 int y = 0; -
trunk/WebCore/rendering/RenderBox.cpp
r31257 r31313 885 885 RenderObject* o = container(); 886 886 if (o && o->absolutePosition(xPos, yPos, fixed)) { 887 yPos += o->borderTopExtra();888 889 887 if (style()->position() == AbsolutePosition) { 890 888 IntSize offset = offsetForPositionedInContainer(o); -
trunk/WebCore/rendering/RenderTableCell.cpp
r31200 r31313 200 200 { 201 201 bool result = RenderBlock::absolutePosition(xPos, yPos, fixed); 202 yPos += m_topExtra; 202 203 RenderView* v = view(); 203 204 if (!v || !v->layoutState()) {
Note:
See TracChangeset
for help on using the changeset viewer.