[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:23:40 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 75249a894a1cd9bf4da658dd9e9c5883f059cc52
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Feb 5 21:54:23 2003 +0000

    	Fix for 3164949.  My fix to make form controls actually obey
    	display settings in CSS exposed a bug in the html4.css
    	stylesheet.  SELECT had been set to be display: block, which
    	is of course just plain wrong.
    
            Reviewed by darin
    
            * khtml/css/html4.css:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3574 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index d9513fb..b68914a 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,14 @@
+2003-02-05  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3164949.  My fix to make form controls actually obey
+	display settings in CSS exposed a bug in the html4.css 
+	stylesheet.  SELECT had been set to be display: block, which
+	is of course just plain wrong.
+	
+        Reviewed by darin
+
+        * khtml/css/html4.css:
+
 2003-02-05  Richard Williamson   <rjw at apple.com>
 
         Cleanup public WebHistory API, stage 1.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index d9513fb..b68914a 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2003-02-05  David Hyatt  <hyatt at apple.com>
+
+	Fix for 3164949.  My fix to make form controls actually obey
+	display settings in CSS exposed a bug in the html4.css 
+	stylesheet.  SELECT had been set to be display: block, which
+	is of course just plain wrong.
+	
+        Reviewed by darin
+
+        * khtml/css/html4.css:
+
 2003-02-05  Richard Williamson   <rjw at apple.com>
 
         Cleanup public WebHistory API, stage 1.
diff --git a/WebCore/khtml/css/html4.css b/WebCore/khtml/css/html4.css
index 8794b63..04931da 100644
--- a/WebCore/khtml/css/html4.css
+++ b/WebCore/khtml/css/html4.css
@@ -385,7 +385,7 @@ PARAM  {
 	display: none; 
 }
 
-SELECT { display: block; margin: 2px; }
+SELECT { margin: 2px; }
 
 /*
  * inline elements

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list