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


The following commit has been merged in the debian/unstable branch:
commit 8f6dcf35532690331220ca8460b2c4a6d698d458
Author: hyatt <hyatt at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Apr 4 18:26:11 2003 +0000

    	Fix for the Search button cutoff on livepage.apple.com  We
    	weren't honoring hspace/vspace on input elements.
    
            Reviewed by darin
    
            * khtml/html/html_formimpl.cpp:
            (HTMLInputElementImpl::parseAttribute):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4026 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 3fdd69e..387e63a 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,5 +1,15 @@
 2003-04-04  David Hyatt  <hyatt at apple.com>
 
+	Fix for the Search button cutoff on livepage.apple.com  We
+	weren't honoring hspace/vspace on input elements.
+	
+        Reviewed by darin
+
+        * khtml/html/html_formimpl.cpp:
+        (HTMLInputElementImpl::parseAttribute):
+
+2003-04-04  David Hyatt  <hyatt at apple.com>
+
 	Fix for 3218085.  Remove the bogus 2cm print rule for body in the
 	html4.css sheet.
 	
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 3fdd69e..387e63a 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,15 @@
 2003-04-04  David Hyatt  <hyatt at apple.com>
 
+	Fix for the Search button cutoff on livepage.apple.com  We
+	weren't honoring hspace/vspace on input elements.
+	
+        Reviewed by darin
+
+        * khtml/html/html_formimpl.cpp:
+        (HTMLInputElementImpl::parseAttribute):
+
+2003-04-04  David Hyatt  <hyatt at apple.com>
+
 	Fix for 3218085.  Remove the bogus 2cm print rule for body in the
 	html4.css sheet.
 	
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 42b9b5e..a227622 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -1252,6 +1252,14 @@ void HTMLInputElementImpl::parseAttribute(AttributeImpl *attr)
     case ATTR_ACCESSKEY:
         // ### ignore for the moment
         break;
+    case ATTR_VSPACE:
+        addCSSLength(CSS_PROP_MARGIN_TOP, attr->value());
+        addCSSLength(CSS_PROP_MARGIN_BOTTOM, attr->value());
+        break;
+    case ATTR_HSPACE:
+        addCSSLength(CSS_PROP_MARGIN_LEFT, attr->value());
+        addCSSLength(CSS_PROP_MARGIN_RIGHT, attr->value());
+        break;        
     case ATTR_ALIGN:
         addHTMLAlignment( attr->value() );
         break;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list