[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 06:33:28 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit d0e5b9046b01a7f3278f7e2708b00eedf89d5526
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Aug 21 20:36:43 2002 +0000

    	Fix for 3015372, tables and blocks nested inside other tables
    	don't center.  This fixes a lot of sites, from the forum
    	sites to the www.ve3d.com voodooextreme site.
    
            * khtml/html/html_tableimpl.cpp:
            (HTMLTablePartElementImpl::parseAttribute):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1891 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index a69c569..a450630 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-08-21  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3015372, tables and blocks nested inside other tables
+	don't center.  This fixes a lot of sites, from the forum
+	sites to the www.ve3d.com voodooextreme site.
+	
+        * khtml/html/html_tableimpl.cpp:
+        (HTMLTablePartElementImpl::parseAttribute):
+
 2002-08-21  Darin Adler  <darin at apple.com>
 
 	- fixed 3027927 -- selected text fields do not cause the web view to scroll to reveal them
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index a69c569..a450630 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2002-08-21  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3015372, tables and blocks nested inside other tables
+	don't center.  This fixes a lot of sites, from the forum
+	sites to the www.ve3d.com voodooextreme site.
+	
+        * khtml/html/html_tableimpl.cpp:
+        (HTMLTablePartElementImpl::parseAttribute):
+
 2002-08-21  Darin Adler  <darin at apple.com>
 
 	- fixed 3027927 -- selected text fields do not cause the web view to scroll to reveal them
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index a69c569..a450630 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2002-08-21  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3015372, tables and blocks nested inside other tables
+	don't center.  This fixes a lot of sites, from the forum
+	sites to the www.ve3d.com voodooextreme site.
+	
+        * khtml/html/html_tableimpl.cpp:
+        (HTMLTablePartElementImpl::parseAttribute):
+
 2002-08-21  Darin Adler  <darin at apple.com>
 
 	- fixed 3027927 -- selected text fields do not cause the web view to scroll to reveal them
diff --git a/WebCore/khtml/html/html_tableimpl.cpp b/WebCore/khtml/html/html_tableimpl.cpp
index af38237..e87d3f1 100644
--- a/WebCore/khtml/html/html_tableimpl.cpp
+++ b/WebCore/khtml/html/html_tableimpl.cpp
@@ -512,6 +512,14 @@ void HTMLTablePartElementImpl::parseAttribute(AttributeImpl *attr)
             removeCSSProperty(CSS_PROP_VERTICAL_ALIGN);
         break;
     }
+    case ATTR_ALIGN:
+    {
+        DOMString v = attr->value();
+        if ( strcasecmp( attr->value(), "center" ) == 0 )
+	  v = "-konq-center";
+        addCSSProperty(CSS_PROP_TEXT_ALIGN, v);
+        break;
+    }
     case ATTR_NOSAVE:
 	break;
     default:

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list