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()
// 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;
}
......
......@@ -158,7 +158,6 @@ PaintUnderInvalidationChecking settable_from_internals=True
PassiveDocumentEventListeners status=experimental
PassiveEventListenersDueToFling status=experimental
PassPaintVisualRectToCompositor
PathOpsSVGClipping status=stable
PaymentRequest status=experimental
PerformanceObserver status=stable
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