[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

hyatt hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:30:34 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 9279aaea521b23253170abd1babaced90cd78d7a
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Mar 20 03:02:24 2003 +0000

    	Adding a few more tags to the list of ones to check for
    	residual style.
    
            Reviewed by gramps
    
            * khtml/html/htmlparser.cpp:
            (KHTMLParser::isResidualStyleTag):
            (KHTMLParser::isAffectedByResidualStyle):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3871 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 5131ae5..9fb6c00 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,16 @@
 2003-03-19  David Hyatt  <hyatt at apple.com>
 
+	Adding a few more tags to the list of ones to check for
+	residual style.
+	
+        Reviewed by gramps
+
+        * khtml/html/htmlparser.cpp:
+        (KHTMLParser::isResidualStyleTag):
+        (KHTMLParser::isAffectedByResidualStyle):
+
+2003-03-19  David Hyatt  <hyatt at apple.com>
+
 	Fix continuations so that they are smarter about reusing
 	anonymous blocks.  Avoids deep nesting when it isn't 
 	necessary.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 5131ae5..9fb6c00 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,16 @@
 2003-03-19  David Hyatt  <hyatt at apple.com>
 
+	Adding a few more tags to the list of ones to check for
+	residual style.
+	
+        Reviewed by gramps
+
+        * khtml/html/htmlparser.cpp:
+        (KHTMLParser::isResidualStyleTag):
+        (KHTMLParser::isAffectedByResidualStyle):
+
+2003-03-19  David Hyatt  <hyatt at apple.com>
+
 	Fix continuations so that they are smarter about reusing
 	anonymous blocks.  Avoids deep nesting when it isn't 
 	necessary.
diff --git a/WebCore/khtml/html/htmlparser.cpp b/WebCore/khtml/html/htmlparser.cpp
index cfbeef5..4a89ee1 100644
--- a/WebCore/khtml/html/htmlparser.cpp
+++ b/WebCore/khtml/html/htmlparser.cpp
@@ -1184,13 +1184,21 @@ bool KHTMLParser::isResidualStyleTag(int _id)
     switch (_id) {
         case ID_A:
         case ID_FONT:
-        case ID_EM:
+        case ID_TT:
+        case ID_U:
         case ID_B:
-        case ID_STRONG:
         case ID_I:
-        case ID_TT:
-        case ID_CODE:
+        case ID_S:
+        case ID_STRIKE:
+        case ID_BIG:
         case ID_SMALL:
+        case ID_EM:
+        case ID_STRONG:
+        case ID_DFN:
+        case ID_CODE:
+        case ID_SAMP:
+        case ID_KBD:
+        case ID_VAR:
             return true;
         default:
             return false;
@@ -1214,6 +1222,13 @@ bool KHTMLParser::isAffectedByResidualStyle(int _id)
         case ID_H5:
         case ID_H6:
         case ID_CENTER:
+        case ID_UL:
+        case ID_OL:
+        case ID_LI:
+        case ID_DL:
+        case ID_DT:
+        case ID_DD:
+        case ID_PRE:
             return true;
         default:
             return false;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list