| Index: Source/core/svg/SVGGraphicsElement.cpp
|
| diff --git a/Source/core/svg/SVGGraphicsElement.cpp b/Source/core/svg/SVGGraphicsElement.cpp
|
| index e53c0cce172fbfa0c4dba5879a76417a29d6bd8c..95bb0c2cd87f6466aff61fed9b86d4f499761283 100644
|
| --- a/Source/core/svg/SVGGraphicsElement.cpp
|
| +++ b/Source/core/svg/SVGGraphicsElement.cpp
|
| @@ -50,14 +50,14 @@ SVGGraphicsElement::~SVGGraphicsElement()
|
| {
|
| }
|
|
|
| -AffineTransform SVGGraphicsElement::getTransformToElement(SVGElement* target, ExceptionState& es)
|
| +AffineTransform SVGGraphicsElement::getTransformToElement(SVGElement* target, ExceptionState& exceptionState)
|
| {
|
| AffineTransform ctm = getCTM(AllowStyleUpdate);
|
|
|
| if (target && target->isSVGGraphicsElement()) {
|
| AffineTransform targetCTM = toSVGGraphicsElement(target)->getCTM(AllowStyleUpdate);
|
| if (!targetCTM.isInvertible()) {
|
| - es.throwUninformativeAndGenericDOMException(InvalidStateError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(InvalidStateError);
|
| return ctm;
|
| }
|
| ctm = targetCTM.inverse() * ctm;
|
|
|