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

abarth at webkit.org abarth at webkit.org
Wed Dec 22 13:23:24 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 2a739848ff601a6e0266734b04879a5ea5ae0c1e
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 13 23:10:34 2010 +0000

    2010-09-13  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Darin Adler.
    
            "Implement" EOF processing in AfterBodyMode and AfterAfterBodyMode
            https://bugs.webkit.org/show_bug.cgi?id=45647
    
            Implements the notImplemented by doing nothing, which is the proper
            behavior according to the spec.
    
            * html/parser/HTMLTreeBuilder.cpp:
            (WebCore::HTMLTreeBuilder::processEndOfFile):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67420 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index c948f05..62bbb12 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Darin Adler.
 
+        "Implement" EOF processing in AfterBodyMode and AfterAfterBodyMode
+        https://bugs.webkit.org/show_bug.cgi?id=45647
+
+        Implements the notImplemented by doing nothing, which is the proper
+        behavior according to the spec.
+
+        * html/parser/HTMLTreeBuilder.cpp:
+        (WebCore::HTMLTreeBuilder::processEndOfFile):
+
+2010-09-13  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Darin Adler.
+
         More trivial EOF handling in tree builder
         https://bugs.webkit.org/show_bug.cgi?id=45648
 
diff --git a/WebCore/html/parser/HTMLTreeBuilder.cpp b/WebCore/html/parser/HTMLTreeBuilder.cpp
index f1e3175..61a8c84 100644
--- a/WebCore/html/parser/HTMLTreeBuilder.cpp
+++ b/WebCore/html/parser/HTMLTreeBuilder.cpp
@@ -2602,8 +2602,7 @@ void HTMLTreeBuilder::processEndOfFile(AtomicHTMLToken& token)
     case AfterBodyMode:
     case AfterAfterBodyMode:
         ASSERT(insertionMode() == AfterBodyMode || insertionMode() == AfterAfterBodyMode);
-        notImplemented();
-        break;
+        return;
     case InHeadNoscriptMode:
         ASSERT(insertionMode() == InHeadNoscriptMode);
         defaultForInHeadNoscript();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list