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

Unified Diff: third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp

Issue 1775013003: Implement -webkit-box-reflect as a filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make msvc dbg happy Created 4 years, 9 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: third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
diff --git a/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp b/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
index 6270c5476ec627376575d63bbfc22d7962703389..195b27fb52890769aa7efb31187863e52f621858 100644
--- a/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
+++ b/third_party/WebKit/Source/core/layout/PaintInvalidationState.cpp
@@ -35,7 +35,7 @@ static bool supportsCachedOffsets(const LayoutObject& object)
// TODO(wangxianzhu): Move some conditions to fast path if possible.
return !object.hasTransformRelatedProperty()
&& !object.hasReflection()
- && !object.hasFilter()
+ && !object.hasFilterInducingProperty()
&& !object.isLayoutFlowThread()
&& !object.isLayoutMultiColumnSpannerPlaceholder()
&& object.styleRef().position() != FixedPosition

Powered by Google App Engine
This is Rietveld 408576698