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

Unified Diff: Source/core/rendering/RenderTableRow.h

Issue 271753002: Remove compositing trigger for will-change: top (and similar) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove from layerTypeRequired logic Created 6 years, 7 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/RenderTableRow.h
diff --git a/Source/core/rendering/RenderTableRow.h b/Source/core/rendering/RenderTableRow.h
index 37f9531f3846a9fbe9823e1b3d4ce92c076a3bf7..24bd496b513835ee6ea4a73134ea0777e22e121e 100644
--- a/Source/core/rendering/RenderTableRow.h
+++ b/Source/core/rendering/RenderTableRow.h
@@ -104,7 +104,7 @@ private:
virtual LayerType layerTypeRequired() const OVERRIDE
{
- if (hasTransform() || hasHiddenBackface() || hasClipPath() || createsGroup() || isStickyPositioned() || style()->hasWillChangeCompositingHint() || style()->shouldCompositeForCurrentAnimations())
+ if (hasTransform() || hasHiddenBackface() || hasClipPath() || createsGroup() || isStickyPositioned() || style()->shouldCompositeForCurrentAnimations())
return NormalLayer;
if (hasOverflowClip())

Powered by Google App Engine
This is Rietveld 408576698