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


The following commit has been merged in the debian/unstable branch:
commit ff9cf4199083f2fcbe152643ba5150d40b8fccba
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Mar 6 21:22:07 2003 +0000

    	Fix for 3190580, tables should reset line-height and white-space
    	in quirks mode.
    
            Reviewed by trey and john
    
            * khtml/css/quirks.css:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3763 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 18e3942..bcd960b 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2003-03-06  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3190580, tables should reset line-height and white-space
+	in quirks mode.
+	
+        Reviewed by trey and john
+
+        * khtml/css/quirks.css:
+
 === Safari-65 ===
 
 2003-03-06  Darin Adler  <darin at apple.com>
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 18e3942..bcd960b 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-03-06  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3190580, tables should reset line-height and white-space
+	in quirks mode.
+	
+        Reviewed by trey and john
+
+        * khtml/css/quirks.css:
+
 === Safari-65 ===
 
 2003-03-06  Darin Adler  <darin at apple.com>
diff --git a/WebCore/khtml/css/quirks.css b/WebCore/khtml/css/quirks.css
index 267eac4..27a20b9 100644
--- a/WebCore/khtml/css/quirks.css
+++ b/WebCore/khtml/css/quirks.css
@@ -2,7 +2,7 @@
  * This style sheet is used by khtml to render HTML pages in quirks mode
  * (C) 2000-2003 Lars Knoll (knoll at kde.org)
  *
- * Konqueror/khtml relies on the existance of this style sheet for
+ * Konqueror/khtml relies on the existence of this style sheet for
  * rendering. Do not remove or modify this file unless you know
  * what you are doing.
  */
@@ -20,4 +20,12 @@ img[align="right"] {
 UL, OL, MENU, DIR {
     \2d konq-flow-mode: \2d konq-around-floats;
 }
-    
\ No newline at end of file
+    
+/* Tables reset both line-height and white-space in quirks mode.
+   Compatible with WinIE. */
+TABLE {
+    white-space: normal;
+    line-height: normal;
+}
+
+

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list