| Index: Source/core/layout/style/SVGLayoutStyle.cpp
|
| diff --git a/Source/core/layout/style/SVGLayoutStyle.cpp b/Source/core/layout/style/SVGLayoutStyle.cpp
|
| index ad8d14ccc1eaf38132a57160da017d82fee33c6f..6c3062cd9996c333d23d97db3719226a54dcc9fd 100644
|
| --- a/Source/core/layout/style/SVGLayoutStyle.cpp
|
| +++ b/Source/core/layout/style/SVGLayoutStyle.cpp
|
| @@ -135,7 +135,7 @@ bool SVGLayoutStyle::diffNeedsLayoutAndPaintInvalidation(const SVGLayoutStyle* o
|
| if (resources != other->resources)
|
| return true;
|
|
|
| - // If markers change, we need a relayout, as marker boundaries are cached in RenderSVGPath.
|
| + // If markers change, we need a relayout, as marker boundaries are cached in LayoutSVGPath.
|
| if (inheritedResources != other->inheritedResources)
|
| return true;
|
|
|
| @@ -193,7 +193,7 @@ bool SVGLayoutStyle::diffNeedsPaintInvalidation(const SVGLayoutStyle* other) con
|
| return true;
|
| }
|
|
|
| - // If fill changes, we just need to issue paint invalidations. Fill boundaries are not influenced by this, only by the Path, that RenderSVGPath contains.
|
| + // If fill changes, we just need to issue paint invalidations. Fill boundaries are not influenced by this, only by the Path, that LayoutSVGPath contains.
|
| if (fill.get() != other->fill.get()) {
|
| if (fill->paintType != other->fill->paintType
|
| || fill->paintColor != other->fill->paintColor
|
|
|