| Index: third_party/WebKit/Source/core/paint/FilterEffectBuilder.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/FilterEffectBuilder.cpp b/third_party/WebKit/Source/core/paint/FilterEffectBuilder.cpp
|
| index 86869045de844b778d2c25f752e23bd15f411145..bdd61a68d4c4d59762d27118c581850e34f1167d 100644
|
| --- a/third_party/WebKit/Source/core/paint/FilterEffectBuilder.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/FilterEffectBuilder.cpp
|
| @@ -126,7 +126,7 @@ FloatRect computeReferenceBox(const Element& element, const FloatSize* zoomedRef
|
| if (zoomedReferenceBoxSize) {
|
| size = *zoomedReferenceBoxSize;
|
| } else if (element.isConnected() && element.layoutObject() && element.layoutObject()->enclosingLayer()) {
|
| - size = FloatSize(element.layoutObject()->enclosingLayer()->physicalBoundingBoxIncludingReflectionAndStackingChildren(LayoutPoint()).size());
|
| + size = FloatSize(element.layoutObject()->enclosingLayer()->physicalBoundingBoxIncludingReflectionAndStackingChildren(LayoutPoint(), PaintLayer::CalculateBoundsOptions::AlwaysIncludeTransforms).size());
|
| }
|
| size.scale(1.0f / zoom);
|
| return FloatRect(FloatPoint(), size);
|
|
|