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

Unified Diff: Source/core/layout/LayoutTableRow.h

Issue 1060973003: compositor-worker: Force elements to grow a layer when a CompositorProxy is created. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 8 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/layout/LayoutTableRow.h
diff --git a/Source/core/layout/LayoutTableRow.h b/Source/core/layout/LayoutTableRow.h
index 18ee05a98b43703e0682143f57077656a48a6a05..97cfe77930e5fceb9322c1f278a7960a2fc53323 100644
--- a/Source/core/layout/LayoutTableRow.h
+++ b/Source/core/layout/LayoutTableRow.h
@@ -109,7 +109,7 @@ private:
virtual DeprecatedPaintLayerType layerTypeRequired() const override
{
- if (hasTransformRelatedProperty() || hasHiddenBackface() || hasClipPath() || createsGroup() || style()->shouldCompositeForCurrentAnimations())
+ if (hasTransformRelatedProperty() || hasHiddenBackface() || hasClipPath() || createsGroup() || style()->shouldCompositeForCurrentAnimations() || style()->hasCompositorProxy())
return NormalDeprecatedPaintLayer;
if (hasOverflowClip())

Powered by Google App Engine
This is Rietveld 408576698