| Index: third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp b/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
|
| index 11af26372097f6b2de63f7de1c718d6f8da8241f..b24e6e5eaca2d2d8aa26325a705ee4bf4f428de4 100644
|
| --- a/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/ObjectPaintProperties.cpp
|
| @@ -14,7 +14,9 @@ void ObjectPaintProperties::getContentsProperties(GeometryPropertyTreeState& pro
|
| else if (svgLocalToBorderBoxTransform())
|
| properties.transform = svgLocalToBorderBoxTransform();
|
|
|
| - if (overflowClip())
|
| + if (svgRootViewportClip())
|
| + properties.clip = svgRootViewportClip();
|
| + else if (overflowClip())
|
| properties.clip = overflowClip();
|
| else if (cssClip())
|
| properties.clip = cssClip();
|
|
|