| Index: third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp b/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
|
| index ae6b0e1f278582355a097b4ca14b1e7450665c9b..eb3e57ad754fcf4904bb7862a2ebec366cacc232 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGSVGElement.cpp
|
| @@ -361,14 +361,14 @@ StaticNodeList* SVGSVGElement::collectIntersectionOrEnclosureList(const FloatRec
|
|
|
| StaticNodeList* SVGSVGElement::getIntersectionList(SVGRectTearOff* rect, SVGElement* referenceElement) const
|
| {
|
| - document().updateLayoutIgnorePendingStylesheets();
|
| + document().updateStyleAndLayoutIgnorePendingStylesheets();
|
|
|
| return collectIntersectionOrEnclosureList(rect->target()->value(), referenceElement, CheckIntersection);
|
| }
|
|
|
| StaticNodeList* SVGSVGElement::getEnclosureList(SVGRectTearOff* rect, SVGElement* referenceElement) const
|
| {
|
| - document().updateLayoutIgnorePendingStylesheets();
|
| + document().updateStyleAndLayoutIgnorePendingStylesheets();
|
|
|
| return collectIntersectionOrEnclosureList(rect->target()->value(), referenceElement, CheckEnclosure);
|
| }
|
| @@ -376,7 +376,7 @@ StaticNodeList* SVGSVGElement::getEnclosureList(SVGRectTearOff* rect, SVGElement
|
| bool SVGSVGElement::checkIntersection(SVGElement* element, SVGRectTearOff* rect) const
|
| {
|
| ASSERT(element);
|
| - document().updateLayoutIgnorePendingStylesheets();
|
| + document().updateStyleAndLayoutIgnorePendingStylesheets();
|
|
|
| return checkIntersectionOrEnclosure(*element, rect->target()->value(), CheckIntersection);
|
| }
|
| @@ -384,7 +384,7 @@ bool SVGSVGElement::checkIntersection(SVGElement* element, SVGRectTearOff* rect)
|
| bool SVGSVGElement::checkEnclosure(SVGElement* element, SVGRectTearOff* rect) const
|
| {
|
| ASSERT(element);
|
| - document().updateLayoutIgnorePendingStylesheets();
|
| + document().updateStyleAndLayoutIgnorePendingStylesheets();
|
|
|
| return checkIntersectionOrEnclosure(*element, rect->target()->value(), CheckEnclosure);
|
| }
|
|
|