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

Unified 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 assert 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/RenderTableCell.cpp
diff --git a/Source/core/rendering/RenderTableCell.cpp b/Source/core/rendering/RenderTableCell.cpp
index f99a7b59bf339c47026527b1bebc45661b3f33a6..43661971fa9b2a4370d140e3c6c59814f4317871 100644
--- a/Source/core/rendering/RenderTableCell.cpp
+++ b/Source/core/rendering/RenderTableCell.cpp
@@ -378,7 +378,7 @@ void RenderTableCell::mapRectToPaintInvalidationBacking(const RenderLayerModelOb
return;
r.setY(r.y());
RenderView* v = view();
- if ((!v || !v->canUseLayoutStateForContainer(paintInvalidationContainer)) && parent())
+ if ((!v || !v->canMapUsingLayoutStateForContainer(paintInvalidationContainer)) && parent())
r.moveBy(-parentBox()->location()); // Rows are in the same coordinate space, so don't add their offset in.
RenderBlockFlow::mapRectToPaintInvalidationBacking(paintInvalidationContainer, r, fixed);
}

Powered by Google App Engine
This is Rietveld 408576698