| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
|
| index dfec8a877fea9133e4eacad7bdcbe4b915baf6dd..f6665cf63897ea5b837b540b36c9e74b9685168d 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
|
| @@ -108,7 +108,7 @@ bool LayoutSVGResourceClipper::calculateClipContentPathIfNeeded()
|
| // Multiple shapes require PathOps. In some degenerate cases PathOps can exhibit quadratic
|
| // behavior, so we cap the number of ops to a reasonable count.
|
| const unsigned kMaxOps = 42;
|
| - if (!RuntimeEnabledFeatures::pathOpsSVGClippingEnabled() || ++opCount > kMaxOps) {
|
| + if (++opCount > kMaxOps) {
|
| m_clipContentPath.clear();
|
| return false;
|
| }
|
|
|