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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:32:22 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 78b01186682c06646c0d9a0e61abbd6c5a28912f
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Mar 30 07:22:31 2003 +0000

            Reviewed by Trey.
    
    	- fixed 3138427 - new window opened by javascript is too small for popcap.com game
    
            * khtml/ecma/kjs_window.cpp:
            (WindowFunc::tryCall): Be a bit more tolerant of misformatted attribute strings.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3963 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index a68e280..31d9ee8 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -2,6 +2,15 @@
 
         Reviewed by Trey.
 
+	- fixed 3138427 - new window opened by javascript is too small for popcap.com game
+
+        * khtml/ecma/kjs_window.cpp:
+        (WindowFunc::tryCall): Be a bit more tolerant of misformatted attribute strings.
+
+2003-03-29  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Trey.
+
 	- fixed 3180786 - Can't log in to the LL Bean Web site
 
 	The problem on this site was misnested tags, leading to two FORM
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index a68e280..31d9ee8 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -2,6 +2,15 @@
 
         Reviewed by Trey.
 
+	- fixed 3138427 - new window opened by javascript is too small for popcap.com game
+
+        * khtml/ecma/kjs_window.cpp:
+        (WindowFunc::tryCall): Be a bit more tolerant of misformatted attribute strings.
+
+2003-03-29  Maciej Stachowiak  <mjs at apple.com>
+
+        Reviewed by Trey.
+
 	- fixed 3180786 - Can't log in to the LL Bean Web site
 
 	The problem on this site was misnested tags, leading to two FORM
diff --git a/WebCore/khtml/ecma/kjs_window.cpp b/WebCore/khtml/ecma/kjs_window.cpp
index 10bda87..9905e5d 100644
--- a/WebCore/khtml/ecma/kjs_window.cpp
+++ b/WebCore/khtml/ecma/kjs_window.cpp
@@ -1141,6 +1141,10 @@ Value WindowFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
           if (pos >= 0) {
             key = s.left(pos).stripWhiteSpace().lower();
             val = s.mid(pos + 1).stripWhiteSpace().lower();
+	    int spacePos = val.find(' ');
+	    if (spacePos != -1) {
+	      val = val.left(spacePos);
+	    }
 
             int scnum = QApplication::desktop()->screenNumber(widget->topLevelWidget());
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list