| Index: third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
|
| diff --git a/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp b/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
|
| index 34b3c9af8a2c26d179872fc36b5ce2830c0e0307..358fff33ee0344339cf06e6ce5a9b305f571b993 100644
|
| --- a/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
|
| +++ b/third_party/WebKit/Source/core/paint/SVGContainerPainter.cpp
|
| @@ -57,7 +57,7 @@ void SVGContainerPainter::paint(const PaintInfo& paintInfo)
|
| if (paintInfoBeforeFiltering.phase != PaintPhaseForeground)
|
| return;
|
|
|
| - if (m_layoutSVGContainer.style()->outlineWidth() && m_layoutSVGContainer.style()->visibility() == VISIBLE) {
|
| + if (m_layoutSVGContainer.style()->outlineWidth() && m_layoutSVGContainer.style()->visibility() == EVisibility::Visible) {
|
| PaintInfo outlinePaintInfo(paintInfoBeforeFiltering);
|
| outlinePaintInfo.phase = PaintPhaseSelfOutlineOnly;
|
| ObjectPainter(m_layoutSVGContainer).paintOutline(outlinePaintInfo, LayoutPoint(boundingBox.location()));
|
|
|