| Index: third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
|
| index 96c68cdafb8ed142fc55ec70a7ef7c570aa5ddad..e39e8b9ad5953bf57f2b51529664ab2302a26f70 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
|
| @@ -46,7 +46,7 @@ SVGGeometryElement::SVGGeometryElement(const QualifiedName& tagName, Document& d
|
|
|
| bool SVGGeometryElement::isPointInFill(SVGPointTearOff* point) const
|
| {
|
| - document().updateLayoutIgnorePendingStylesheets();
|
| + document().updateStyleAndLayoutIgnorePendingStylesheets();
|
|
|
| // FIXME: Eventually we should support isPointInFill for display:none elements.
|
| if (!layoutObject() || !layoutObject()->isSVGShape())
|
| @@ -60,7 +60,7 @@ bool SVGGeometryElement::isPointInFill(SVGPointTearOff* point) const
|
|
|
| bool SVGGeometryElement::isPointInStroke(SVGPointTearOff* point) const
|
| {
|
| - document().updateLayoutIgnorePendingStylesheets();
|
| + document().updateStyleAndLayoutIgnorePendingStylesheets();
|
|
|
| // FIXME: Eventually we should support isPointInStroke for display:none elements.
|
| if (!layoutObject() || !layoutObject()->isSVGShape())
|
|
|