| Index: Source/core/xml/parser/XMLDocumentParser.cpp | 
| diff --git a/Source/core/xml/parser/XMLDocumentParser.cpp b/Source/core/xml/parser/XMLDocumentParser.cpp | 
| index 5c0baa7b78a82568cb424f6bfdae8a679a3d41fe..5f568c728346815f3f7e9dc04a46305c50755d58 100644 | 
| --- a/Source/core/xml/parser/XMLDocumentParser.cpp | 
| +++ b/Source/core/xml/parser/XMLDocumentParser.cpp | 
| @@ -1017,7 +1017,7 @@ void XMLDocumentParser::endElementNs() | 
|  | 
| if (!scriptingContentIsAllowed(parserContentPolicy()) && n->isElementNode() && toScriptLoaderIfPossible(toElement(n.get()))) { | 
| popCurrentNode(); | 
| -        n->remove(IGNORE_EXCEPTION_STATE); | 
| +        n->remove(IGNORE_EXCEPTION); | 
| return; | 
| } | 
|  | 
| @@ -1200,9 +1200,9 @@ void XMLDocumentParser::startDocument(const String& version, const String& encod | 
| } | 
|  | 
| if (!version.isNull()) | 
| -        document()->setXMLVersion(version, ASSERT_NO_EXCEPTION_STATE); | 
| +        document()->setXMLVersion(version, ASSERT_NO_EXCEPTION); | 
| if (standalone != StandaloneUnspecified) | 
| -        document()->setXMLStandalone(standaloneInfo == StandaloneYes, ASSERT_NO_EXCEPTION_STATE); | 
| +        document()->setXMLStandalone(standaloneInfo == StandaloneYes, ASSERT_NO_EXCEPTION); | 
| if (!encoding.isNull()) | 
| document()->setXMLEncoding(encoding); | 
| document()->setHasXMLDeclaration(true); | 
|  |