| Index: Source/core/html/HTMLFrameOwnerElement.cpp
|
| diff --git a/Source/core/html/HTMLFrameOwnerElement.cpp b/Source/core/html/HTMLFrameOwnerElement.cpp
|
| index ce5fe48ecec2baadbbddad8b911aef68cdeb98c0..3cf1bf82c3c8d89af51d152dc3aec0f70ecc93cd 100644
|
| --- a/Source/core/html/HTMLFrameOwnerElement.cpp
|
| +++ b/Source/core/html/HTMLFrameOwnerElement.cpp
|
| @@ -112,13 +112,13 @@ bool HTMLFrameOwnerElement::isKeyboardFocusable() const
|
| return m_contentFrame && HTMLElement::isKeyboardFocusable();
|
| }
|
|
|
| -SVGDocument* HTMLFrameOwnerElement::getSVGDocument(ExceptionState& es) const
|
| +SVGDocument* HTMLFrameOwnerElement::getSVGDocument(ExceptionState& exceptionState) const
|
| {
|
| Document* doc = contentDocument();
|
| if (doc && doc->isSVGDocument())
|
| return toSVGDocument(doc);
|
| // Spec: http://www.w3.org/TR/SVG/struct.html#InterfaceGetSVGDocument
|
| - es.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(NotSupportedError);
|
| return 0;
|
| }
|
|
|
|
|