[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:43:30 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 3f1fda454454ccc62599bdec6e4dd02f505ce544
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu May 29 22:44:15 2003 +0000

            Reviewed by Maciej
    
    	Fix for this bug:
    
    	<rdar://problem/3271697>: Search fails at travel site
    
            * khtml/html/html_formimpl.cpp:
            (HTMLFormElementImpl::parseAttribute): Allow form method to be set
    	to GET from javascript.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4449 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 0e0a501..2bef4f8 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,15 @@
+2003-05-29  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by Maciej
+
+	Fix for this bug:
+
+	<rdar://problem/3271697>: Search fails at travel site
+
+        * khtml/html/html_formimpl.cpp:
+        (HTMLFormElementImpl::parseAttribute): Allow form method to be set
+	to GET from javascript.
+
 2003-05-29  John Sullivan  <sullivan at apple.com>
 
 	- fixed MIME type leaks that were most of 3272566 
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0e0a501..2bef4f8 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,15 @@
+2003-05-29  Ken Kocienda  <kocienda at apple.com>
+
+        Reviewed by Maciej
+
+	Fix for this bug:
+
+	<rdar://problem/3271697>: Search fails at travel site
+
+        * khtml/html/html_formimpl.cpp:
+        (HTMLFormElementImpl::parseAttribute): Allow form method to be set
+	to GET from javascript.
+
 2003-05-29  John Sullivan  <sullivan at apple.com>
 
 	- fixed MIME type leaks that were most of 3272566 
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index ebe95f0..651616a 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -586,6 +586,8 @@ void HTMLFormElementImpl::parseAttribute(AttributeImpl *attr)
     case ATTR_METHOD:
         if ( strcasecmp( attr->value(), "post" ) == 0 )
             m_post = true;
+        else if ( strcasecmp( attr->value(), "get" ) == 0 )
+            m_post = false;
         break;
     case ATTR_ENCTYPE:
         setEnctype( attr->value() );

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list