Bug 43174

Summary: [WML] Change DocumentParser with ScriptableDocumentParser in WMLDocument
Product: WebKit Reporter: Gyuyoung Kim <gyuyoung.kim>
Component: WebKit Misc.Assignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, eric, hyuki.kim
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: PC   
OS: Linux   
Attachments:
Description Flags
Patch eric: review+, eric: commit-queue+

Description Gyuyoung Kim 2010-07-29 00:07:52 PDT
DocumentParser doesn't support wellFormed(). So, I changed the DocumentParser with ScriptableDocumentParser.


 48 void WMLDocument::finishedParsing()
 49 {
 50     if (DocumentParser* parser = this->parser())     {
 51         if (!parser->wellFormed()) {
 52             Document::finishedParsing();
 53             return;
 54         }
 55     }
 56
Comment 1 Gyuyoung Kim 2010-07-29 00:10:05 PDT
Created attachment 62921 [details]
Patch
Comment 2 Eric Seidel (no email) 2010-08-06 13:05:13 PDT
Comment on attachment 62921 [details]
Patch

OK.
Comment 3 Eric Seidel (no email) 2010-08-07 19:48:09 PDT
Committed r64930: <http://trac.webkit.org/changeset/64930>