From: commit-queue@webkit.org Date: Fri, 29 Jun 2012 15:27:45 +0000 (+0000) Subject: Update FIXME comment in XMLDocumentParser::wellFormed X-Git-Tag: 070512121124~325 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=33cae10d9055b101a74cc1619ea0b4e4b27f5c37;p=profile%2Fivi%2Fwebkit-efl.git Update FIXME comment in XMLDocumentParser::wellFormed https://bugs.webkit.org/show_bug.cgi?id=90223 Patch by Kwang Yul Seo on 2012-06-29 Reviewed by Adam Barth. XMLDocumentParser::wellFormed is still used by the XMLHttpRequest to check if the responseXML was well formed. So it can't be removed. * xml/parser/XMLDocumentParser.h: (XMLDocumentParser): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121564 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 1215c2c..3e2f9cb 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,16 @@ +2012-06-29 Kwang Yul Seo + + Update FIXME comment in XMLDocumentParser::wellFormed + https://bugs.webkit.org/show_bug.cgi?id=90223 + + Reviewed by Adam Barth. + + XMLDocumentParser::wellFormed is still used by the XMLHttpRequest to check if the responseXML was well formed. + So it can't be removed. + + * xml/parser/XMLDocumentParser.h: + (XMLDocumentParser): + 2012-06-29 Andreas Kling Separate mutating CSSStyleDeclaration operations. diff --git a/Source/WebCore/xml/parser/XMLDocumentParser.h b/Source/WebCore/xml/parser/XMLDocumentParser.h index 622cf90..2a7245e 100644 --- a/Source/WebCore/xml/parser/XMLDocumentParser.h +++ b/Source/WebCore/xml/parser/XMLDocumentParser.h @@ -94,7 +94,7 @@ class Text; static bool parseDocumentFragment(const String&, DocumentFragment*, Element* parent = 0, FragmentScriptingPermission = AllowScriptingContent); - // FIXME: This function used to be used by WML. Can we remove it? + // Used by the XMLHttpRequest to check if the responseXML was well formed. virtual bool wellFormed() const { return !m_sawError; } TextPosition textPosition() const;