| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| index 7c8d826e75e5b4509eb08ece2204b9a2f15acaa0..e2f907764e3e41020fa1a3e9ed45ee2afb6661ba 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| @@ -235,7 +235,8 @@ LayoutRect LayoutSVGInlineText::clippedOverflowRectForPaintInvalidation(const La
|
| {
|
| // FIXME: The following works because LayoutSVGBlock has forced slow rect mapping of the paintInvalidationState.
|
| // Should let this really work with paintInvalidationState's fast mapping and remove the assert.
|
| - ASSERT(!paintInvalidationState || !paintInvalidationState->canMapToContainer(paintInvalidationContainer));
|
| + // TODO(wangxianzhu): Check if we should re-enable or change this assert for slimmingPaintInvalidation.
|
| + ASSERT(RuntimeEnabledFeatures::slimmingPaintInvalidationEnabled() || !paintInvalidationState || !paintInvalidationState->canMapToContainer(paintInvalidationContainer));
|
| return parent()->clippedOverflowRectForPaintInvalidation(paintInvalidationContainer, paintInvalidationState);
|
| }
|
|
|
|
|