[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

eric at webkit.org eric at webkit.org
Wed Dec 22 11:49:02 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 8277a404e09b86d44c0fe6f967eb980e20b4c83e
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Aug 8 02:38:22 2010 +0000

    2010-08-07  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
    
            Reviewed by Eric Seidel.
    
            [WML] Change DocumentParser with ScriptableDocumentParser in WMLDocument
            https://bugs.webkit.org/show_bug.cgi?id=43174
    
            * wml/WMLDocument.cpp:
            (WebCore::WMLDocument::finishedParsing): Change DocumentParser with ScriptableDocumentParser.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64930 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9faeb8c..9057324 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-08-07  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
+
+        Reviewed by Eric Seidel.
+
+        [WML] Change DocumentParser with ScriptableDocumentParser in WMLDocument
+        https://bugs.webkit.org/show_bug.cgi?id=43174
+
+        * wml/WMLDocument.cpp:
+        (WebCore::WMLDocument::finishedParsing): Change DocumentParser with ScriptableDocumentParser.
+
 2010-08-07  Dan Bernstein  <mitz at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebCore/wml/WMLDocument.cpp b/WebCore/wml/WMLDocument.cpp
index ba4bb57..0ac8f90 100644
--- a/WebCore/wml/WMLDocument.cpp
+++ b/WebCore/wml/WMLDocument.cpp
@@ -26,7 +26,7 @@
 #include "BackForwardList.h"
 #include "Frame.h"
 #include "Page.h"
-#include "DocumentParser.h"
+#include "ScriptableDocumentParser.h"
 #include "WMLCardElement.h"
 #include "WMLErrorHandling.h"
 #include "WMLPageState.h"
@@ -47,7 +47,7 @@ WMLDocument::~WMLDocument()
 
 void WMLDocument::finishedParsing()
 {
-    if (DocumentParser* parser = this->parser()) {
+    if (ScriptableDocumentParser* parser = this->scriptableDocumentParser()) {
         if (!parser->wellFormed()) {
             Document::finishedParsing();
             return;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list