| Index: Source/core/rendering/svg/RenderSVGResourcePattern.cpp
|
| diff --git a/Source/core/rendering/svg/RenderSVGResourcePattern.cpp b/Source/core/rendering/svg/RenderSVGResourcePattern.cpp
|
| index 738815598fcdf20d9a0c02d51a844d00ac3701ba..764f9876fa75b48d07e009c3b84f7e85af1fbb1b 100644
|
| --- a/Source/core/rendering/svg/RenderSVGResourcePattern.cpp
|
| +++ b/Source/core/rendering/svg/RenderSVGResourcePattern.cpp
|
| @@ -42,14 +42,14 @@ void RenderSVGResourcePattern::removeAllClientsFromCache(bool markForInvalidatio
|
| {
|
| m_patternMap.clear();
|
| m_shouldCollectPatternAttributes = true;
|
| - markAllClientsForInvalidation(markForInvalidation ? RepaintInvalidation : ParentOnlyInvalidation);
|
| + markAllClientsForInvalidation(markForInvalidation ? PaintInvalidation : ParentOnlyInvalidation);
|
| }
|
|
|
| void RenderSVGResourcePattern::removeClientFromCache(RenderObject* client, bool markForInvalidation)
|
| {
|
| ASSERT(client);
|
| m_patternMap.remove(client);
|
| - markClientForInvalidation(client, markForInvalidation ? RepaintInvalidation : ParentOnlyInvalidation);
|
| + markClientForInvalidation(client, markForInvalidation ? PaintInvalidation : ParentOnlyInvalidation);
|
| }
|
|
|
| PatternData* RenderSVGResourcePattern::buildPattern(RenderObject* object, unsigned short resourceMode)
|
|
|