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

Unified Diff: third_party/WebKit/Source/core/paint/PaintInvalidator.cpp

Issue 2626523002: Remove workaround for multicol spanner in PaintInvalidator (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp b/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
index f3f7f8b3086c53f39925d880e5ff7ad08ad1364d..cd44b829262c913ced298c5ab98875deb1a9a90f 100644
--- a/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintInvalidator.cpp
@@ -333,12 +333,9 @@ void PaintInvalidator::updateContext(const LayoutObject& object,
PaintInvalidatorContext::ForcedSubtreeInvalidationChecking;
// TODO(crbug.com/637313): This is temporary before we support filters in
- // paint property tree.
+ // GeometryMapper.
// TODO(crbug.com/648274): This is a workaround for multi-column contents.
- // TODO(crbug.com/672989): This is a workaround for out-of-flow positioned
- // objects in multi-column spanner.
- if (object.hasFilterInducingProperty() || object.isLayoutFlowThread() ||
- object.isColumnSpanAll()) {
+ if (object.hasFilterInducingProperty() || object.isLayoutFlowThread()) {
context.forcedSubtreeInvalidationFlags |=
PaintInvalidatorContext::ForcedSubtreeSlowPathRect;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698