Update FIXME comment in XMLDocumentParser::wellFormed
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 29 Jun 2012 15:27:45 +0000 (15:27 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Fri, 29 Jun 2012 15:27:45 +0000 (15:27 +0000)
https://bugs.webkit.org/show_bug.cgi?id=90223

Patch by Kwang Yul Seo <skyul@company100.net> 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

Source/WebCore/ChangeLog
Source/WebCore/xml/parser/XMLDocumentParser.h

index 1215c2c..3e2f9cb 100644 (file)
@@ -1,3 +1,16 @@
+2012-06-29  Kwang Yul Seo  <skyul@company100.net>
+
+        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  <kling@webkit.org>
 
         Separate mutating CSSStyleDeclaration operations.
index 622cf90..2a7245e 100644 (file)
@@ -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;