[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:34:41 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 2a24c1858daa55112766a1b6f3400a18572f425b
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 27 00:19:06 2002 +0000

    	Fix for 3026006.  Ensure that TABLES inside <div>s with align="right"
    	are properly positioned.  <div align="right"> was completely
    	unimplemented.  This patch implements it for the common cases
    	(nested divs, tables within divs, and paragraphs).
    
            * khtml/css/html4.css:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1918 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 5e34fe2..3dbd811 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+2002-08-26  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3026006.  Ensure that TABLES inside <div>s with align="right"
+	are properly positioned.  <div align="right"> was completely
+	unimplemented.  This patch implements it for the common cases
+	(nested divs, tables within divs, and paragraphs).
+	
+        * khtml/css/html4.css:
+
 2002-08-26  Darin Adler  <darin at apple.com>
 
         * khtml/rendering/render_list.cpp:
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 5e34fe2..3dbd811 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2002-08-26  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3026006.  Ensure that TABLES inside <div>s with align="right"
+	are properly positioned.  <div align="right"> was completely
+	unimplemented.  This patch implements it for the common cases
+	(nested divs, tables within divs, and paragraphs).
+	
+        * khtml/css/html4.css:
+
 2002-08-26  Darin Adler  <darin at apple.com>
 
         * khtml/rendering/render_list.cpp:
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 5e34fe2..3dbd811 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2002-08-26  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3026006.  Ensure that TABLES inside <div>s with align="right"
+	are properly positioned.  <div align="right"> was completely
+	unimplemented.  This patch implements it for the common cases
+	(nested divs, tables within divs, and paragraphs).
+	
+        * khtml/css/html4.css:
+
 2002-08-26  Darin Adler  <darin at apple.com>
 
         * khtml/rendering/render_list.cpp:
diff --git a/WebCore/khtml/css/html4.css b/WebCore/khtml/css/html4.css
index c387ff6..f596803 100644
--- a/WebCore/khtml/css/html4.css
+++ b/WebCore/khtml/css/html4.css
@@ -260,6 +260,12 @@ CAPTION {
 	text-align: -konq-center; 
 }
 
+/* rules to deal with right-aligned divs. -dwh */
+DIV[align="right"] > TABLE,
+DIV[align="right"] > P,
+DIV[align="right"] > DIV
+ { margin-left: auto; margin-right: 0px; }
+
 /* don't use "TD[align=...] > *". This sould give problems with
  * constructs as <td align=left><ul><li>...
  * Hope the next ones cover all relevant cases. Lars 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list