Commit 44babe6c authored by rob.buis's avatar rob.buis Committed by Commit bot

Remove PathOpsSVGClipping runtime flag (status=stable)

BUG=402536

Review-Url: https://codereview.chromium.org/2314923002
Cr-Commit-Position: refs/heads/master@{#417334}
parent 606b88d9
...@@ -108,7 +108,7 @@ bool LayoutSVGResourceClipper::calculateClipContentPathIfNeeded() ...@@ -108,7 +108,7 @@ bool LayoutSVGResourceClipper::calculateClipContentPathIfNeeded()
// Multiple shapes require PathOps. In some degenerate cases PathOps can exhibit quadratic // Multiple shapes require PathOps. In some degenerate cases PathOps can exhibit quadratic
// behavior, so we cap the number of ops to a reasonable count. // behavior, so we cap the number of ops to a reasonable count.
const unsigned kMaxOps = 42; const unsigned kMaxOps = 42;
if (!RuntimeEnabledFeatures::pathOpsSVGClippingEnabled() || ++opCount > kMaxOps) { if (++opCount > kMaxOps) {
m_clipContentPath.clear(); m_clipContentPath.clear();
return false; return false;
} }
......
...@@ -158,7 +158,6 @@ PaintUnderInvalidationChecking settable_from_internals=True ...@@ -158,7 +158,6 @@ PaintUnderInvalidationChecking settable_from_internals=True
PassiveDocumentEventListeners status=experimental PassiveDocumentEventListeners status=experimental
PassiveEventListenersDueToFling status=experimental PassiveEventListenersDueToFling status=experimental
PassPaintVisualRectToCompositor PassPaintVisualRectToCompositor
PathOpsSVGClipping status=stable
PaymentRequest status=experimental PaymentRequest status=experimental
PerformanceObserver status=stable PerformanceObserver status=stable
PermissionDelegation status=test PermissionDelegation status=test
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment