[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:22:53 UTC 2010


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

    2010-09-13  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Darin Adler.
    
            Fix </sarcasm>
            https://bugs.webkit.org/show_bug.cgi?id=45645
    
            Test that </sarcasm> works properly.
    
            * html5lib/resources/webkit02.dat:
    2010-09-13  Adam Barth  <abarth at webkit.org>
    
            Reviewed by Darin Adler.
    
            Fix </sarcasm>
            https://bugs.webkit.org/show_bug.cgi?id=45645
    
            Umm... Yeah.
    
            * html/parser/HTMLTreeBuilder.cpp:
            (WebCore::HTMLTreeBuilder::processEndTagForInBody):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67396 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 24fddda..33830c7 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,14 @@
+2010-09-13  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Darin Adler.
+
+        Fix </sarcasm>
+        https://bugs.webkit.org/show_bug.cgi?id=45645
+
+        Test that </sarcasm> works properly.
+
+        * html5lib/resources/webkit02.dat:
+
 2010-09-13  Yury Semikhatsky  <yurys at chromium.org>
 
         Unreviewed. Rebaseline inspector/extensions-events.html
diff --git a/LayoutTests/html5lib/resources/webkit02.dat b/LayoutTests/html5lib/resources/webkit02.dat
index 450643b..d29d124 100644
--- a/LayoutTests/html5lib/resources/webkit02.dat
+++ b/LayoutTests/html5lib/resources/webkit02.dat
@@ -21,3 +21,14 @@
 |         "<strong>A</strong>"
 |       <span>
 |         "B"
+
+#data
+<div><sarcasm><div></div></sarcasm></div>
+#errors
+#document
+| <html>
+|   <head>
+|   <body>
+|     <div>
+|       <sarcasm>
+|         <div>
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 4d3334f..d5d88b2 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-09-13  Adam Barth  <abarth at webkit.org>
+
+        Reviewed by Darin Adler.
+
+        Fix </sarcasm>
+        https://bugs.webkit.org/show_bug.cgi?id=45645
+
+        Umm... Yeah.
+
+        * html/parser/HTMLTreeBuilder.cpp:
+        (WebCore::HTMLTreeBuilder::processEndTagForInBody):
+
 2010-09-13  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
 
         Reviewed by Darin Adler.
diff --git a/WebCore/html/parser/HTMLTreeBuilder.cpp b/WebCore/html/parser/HTMLTreeBuilder.cpp
index 47bd30a..f569036 100644
--- a/WebCore/html/parser/HTMLTreeBuilder.cpp
+++ b/WebCore/html/parser/HTMLTreeBuilder.cpp
@@ -2010,10 +2010,6 @@ void HTMLTreeBuilder::processEndTagForInBody(AtomicHTMLToken& token)
         m_tree.openElements()->popUntilNumberedHeaderElementPopped();
         return;
     }
-    if (token.name() == "sarcasm") {
-        notImplemented(); // Take a deep breath.
-        return;
-    }
     if (isFormattingTag(token.name())) {
         callTheAdoptionAgency(token);
         return;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list