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

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

Issue 2276283002: Include filter-generated content bounds in visual rects (Closed)
Patch Set: Created 4 years, 4 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/LayoutBox.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBox.cpp b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
index 3ac149226ea287ae482c741872f4534cd0e74266..be481b9f7ed5947145e312690df6ee45ffc9af3d 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBox.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBox.cpp
@@ -2194,7 +2194,7 @@ void LayoutBox::inflateVisualRectForReflectionAndFilter(LayoutRect& paintInvalid
paintInvalidationRect.unite(reflectedRect(paintInvalidationRect));
if (layer() && layer()->hasFilterInducingProperty())
- paintInvalidationRect = layer()->mapLayoutRectForFilter(paintInvalidationRect);
+ paintInvalidationRect = layer()->mapLayoutRectToAffectedFilterRegion(paintInvalidationRect);
}
void LayoutBox::updateLogicalWidth()

Powered by Google App Engine
This is Rietveld 408576698