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


The following commit has been merged in the debian/unstable branch:
commit 49d22fe46674e7e4c600b905515bc689c4f9a4be
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat May 10 04:45:29 2003 +0000

    	Finally get tables cutting the right properties off and letting
    	the right ones through in quirks mode.  Font-family *is* inherited
    	through into tables in all other browsers.  We have been doing this
    	wrong the whole time.  Also ensure that font-style and font-variant
    	are reset.
    
            Reviewed by darin
    
            * khtml/css/quirks.css:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4339 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 9caa131..a940d98 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,17 @@
 2003-05-09  David Hyatt  <hyatt at apple.com>
 
+	Finally get tables cutting the right properties off and letting
+	the right ones through in quirks mode.  Font-family *is* inherited
+	through into tables in all other browsers.  We have been doing this
+	wrong the whole time.  Also ensure that font-style and font-variant
+	are reset.
+	
+        Reviewed by darin
+
+        * khtml/css/quirks.css:
+
+2003-05-09  David Hyatt  <hyatt at apple.com>
+
 	Always allow KONQ_TEXT as a valid value, and don't restrict its
 	use to lax CSS parsing.  (We want our UA sheets to be parsed
 	strictly.)
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 9caa131..a940d98 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,17 @@
 2003-05-09  David Hyatt  <hyatt at apple.com>
 
+	Finally get tables cutting the right properties off and letting
+	the right ones through in quirks mode.  Font-family *is* inherited
+	through into tables in all other browsers.  We have been doing this
+	wrong the whole time.  Also ensure that font-style and font-variant
+	are reset.
+	
+        Reviewed by darin
+
+        * khtml/css/quirks.css:
+
+2003-05-09  David Hyatt  <hyatt at apple.com>
+
 	Always allow KONQ_TEXT as a valid value, and don't restrict its
 	use to lax CSS parsing.  (We want our UA sheets to be parsed
 	strictly.)
diff --git a/WebCore/khtml/css/quirks.css b/WebCore/khtml/css/quirks.css
index 5b3535c..1bb57de 100644
--- a/WebCore/khtml/css/quirks.css
+++ b/WebCore/khtml/css/quirks.css
@@ -22,13 +22,14 @@ UL, OL, MENU, DIR {
 }
     
 /* Tables reset both line-height and white-space in quirks mode.
-   Compatible with WinIE. */
+   Compatible with WinIE.   Note that font-family is *not reset*.  */
 TABLE {
     white-space: normal;
     line-height: normal;
     font-weight: normal;
     font-size: medium;
-    font-family: \2d konq-body;
+    font-variant: normal;
+    font-style: normal;
     color: \2d konq-text;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list