Bug 43174 - [WML] Change DocumentParser with ScriptableDocumentParser in WMLDocument
Summary: [WML] Change DocumentParser with ScriptableDocumentParser in WMLDocument
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC Linux
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-29 00:07 PDT by Gyuyoung Kim
Modified: 2010-08-07 19:48 PDT (History)
3 users (show)

See Also:


Attachments
Patch (1.38 KB, patch)
2010-07-29 00:10 PDT, Gyuyoung Kim
eric: review+
eric: commit-queue+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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>