[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:26:57 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 376edd0da733075617b8951aa95bbf2b8a73984e
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Mar 3 20:24:26 2003 +0000

    	Fix for 3178361, <th> don't draw borders.   Boneheaded mistake
    	on my part.  Just forgot to include it along with <td> in the
    	CSS hack for sharing cell rules.
    
            Reviewed by rjw
    
            * khtml/css/cssstyleselector.cpp:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3729 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 6e5598d..53d9a05 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2003-03-03  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3178361, <th> don't draw borders.   Boneheaded mistake
+	on my part.  Just forgot to include it along with <td> in the
+	CSS hack for sharing cell rules.
+	
+        Reviewed by rjw
+
+        * khtml/css/cssstyleselector.cpp:
+
 2003-03-03  Richard Williamson   <rjw at apple.com>
 
         Fix build oops from last checkin to khtml/html/html_formimpl.cpp.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6e5598d..53d9a05 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2003-03-03  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3178361, <th> don't draw borders.   Boneheaded mistake
+	on my part.  Just forgot to include it along with <td> in the
+	CSS hack for sharing cell rules.
+	
+        Reviewed by rjw
+
+        * khtml/css/cssstyleselector.cpp:
+
 2003-03-03  Richard Williamson   <rjw at apple.com>
 
         Fix build oops from last checkin to khtml/html/html_formimpl.cpp.
diff --git a/WebCore/khtml/css/cssstyleselector.cpp b/WebCore/khtml/css/cssstyleselector.cpp
index 5c233d6..f005859 100644
--- a/WebCore/khtml/css/cssstyleselector.cpp
+++ b/WebCore/khtml/css/cssstyleselector.cpp
@@ -489,8 +489,8 @@ unsigned int CSSStyleSelector::addInlineDeclarations(DOM::ElementImpl* e,
                                                      unsigned int numProps)
 {
     CSSStyleDeclarationImpl* addDecls = 0;
-    if (e->id() == ID_TD) // For now only TD Implements the virtual function for shared cell rules.
-        addDecls = e->getAdditionalStyleDecls();
+    if (e->id() == ID_TD || e->id() == ID_TH)     // For now only TableCellElement implements the
+        addDecls = e->getAdditionalStyleDecls();  // virtual function for shared cell rules.
 
     if (!decl && !addDecls)
         return numProps;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list