Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: Source/core/rendering/RenderTableCell.cpp

Issue 335963002: Change LayoutState to be stack-allocated (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix push function to match old behavior... Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 mapRectToPaintInvalidationBacking(paintInvalidationContainer, r); 371 mapRectToPaintInvalidationBacking(paintInvalidationContainer, r);
372 return r; 372 return r;
373 } 373 }
374 374
375 void RenderTableCell::mapRectToPaintInvalidationBacking(const RenderLayerModelOb ject* paintInvalidationContainer, LayoutRect& r, bool fixed) const 375 void RenderTableCell::mapRectToPaintInvalidationBacking(const RenderLayerModelOb ject* paintInvalidationContainer, LayoutRect& r, bool fixed) const
376 { 376 {
377 if (paintInvalidationContainer == this) 377 if (paintInvalidationContainer == this)
378 return; 378 return;
379 r.setY(r.y()); 379 r.setY(r.y());
380 RenderView* v = view(); 380 RenderView* v = view();
381 if ((!v || !v->canUseLayoutStateForContainer(paintInvalidationContainer)) && parent()) 381 if ((!v || !v->canMapUsingLayoutStateForContainer(paintInvalidationContainer )) && parent())
382 r.moveBy(-parentBox()->location()); // Rows are in the same coordinate s pace, so don't add their offset in. 382 r.moveBy(-parentBox()->location()); // Rows are in the same coordinate s pace, so don't add their offset in.
383 RenderBlockFlow::mapRectToPaintInvalidationBacking(paintInvalidationContaine r, r, fixed); 383 RenderBlockFlow::mapRectToPaintInvalidationBacking(paintInvalidationContaine r, r, fixed);
384 } 384 }
385 385
386 LayoutUnit RenderTableCell::cellBaselinePosition() const 386 LayoutUnit RenderTableCell::cellBaselinePosition() const
387 { 387 {
388 // <http://www.w3.org/TR/2007/CR-CSS21-20070719/tables.html#height-layout>: The baseline of a cell is the baseline of 388 // <http://www.w3.org/TR/2007/CR-CSS21-20070719/tables.html#height-layout>: The baseline of a cell is the baseline of
389 // the first in-flow line box in the cell, or the first in-flow table-row in the cell, whichever comes first. If there 389 // the first in-flow line box in the cell, or the first in-flow table-row in the cell, whichever comes first. If there
390 // is no such line box or table-row, the baseline is the bottom of content e dge of the cell box. 390 // is no such line box or table-row, the baseline is the bottom of content e dge of the cell box.
391 LayoutUnit firstLineBaseline = firstLineBoxBaseline(); 391 LayoutUnit firstLineBaseline = firstLineBoxBaseline();
(...skipping 881 matching lines...) Expand 10 before | Expand all | Expand 10 after
1273 1273
1274 RenderTableCell* RenderTableCell::createAnonymousWithParentRenderer(const Render Object* parent) 1274 RenderTableCell* RenderTableCell::createAnonymousWithParentRenderer(const Render Object* parent)
1275 { 1275 {
1276 RenderTableCell* newCell = RenderTableCell::createAnonymous(&parent->documen t()); 1276 RenderTableCell* newCell = RenderTableCell::createAnonymous(&parent->documen t());
1277 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay( parent->style(), TABLE_CELL); 1277 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay( parent->style(), TABLE_CELL);
1278 newCell->setStyle(newStyle.release()); 1278 newCell->setStyle(newStyle.release());
1279 return newCell; 1279 return newCell;
1280 } 1280 }
1281 1281
1282 } // namespace WebCore 1282 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698