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

trey trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:18:46 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0e6f21787deccc77f374fbd9850f9fbfbadd4cee
Author: trey <trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Jan 5 06:59:07 2003 +0000

    	3098388 - Pressing the back button goes back two levels at allmusic.com
    
    	When processing an assignment to document.location, allow items to be added
    	to history.  This parallels the existing treatment of window.location.href.
    
            Reviewed by Richard, Darin
    
            * khtml/ecma/kjs_html.cpp:
            (KJS::HTMLDocument::putValue):  Pass false for lockHistory arg of scheduleRedirection()
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3254 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index c0f5103..108675f 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,15 @@
+2003-01-04  Trey Matteson  <trey at apple.com>
+
+	3098388 - Pressing the back button goes back two levels at allmusic.com	
+
+	When processing an assignment to document.location, allow items to be added
+	to history.  This parallels the existing treatment of window.location.href.
+
+        Reviewed by Richard, Darin
+
+        * khtml/ecma/kjs_html.cpp:
+        (KJS::HTMLDocument::putValue):  Pass false for lockHistory arg of scheduleRedirection()
+
 2003-01-04  Richard Williamson   <rjw at apple.com>
 
         I checked in kjs_window.cpp by accident.  The only change
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index c0f5103..108675f 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,15 @@
+2003-01-04  Trey Matteson  <trey at apple.com>
+
+	3098388 - Pressing the back button goes back two levels at allmusic.com	
+
+	When processing an assignment to document.location, allow items to be added
+	to history.  This parallels the existing treatment of window.location.href.
+
+        Reviewed by Richard, Darin
+
+        * khtml/ecma/kjs_html.cpp:
+        (KJS::HTMLDocument::putValue):  Pass false for lockHistory arg of scheduleRedirection()
+
 2003-01-04  Richard Williamson   <rjw at apple.com>
 
         I checked in kjs_window.cpp by accident.  The only change
diff --git a/WebCore/khtml/ecma/kjs_html.cpp b/WebCore/khtml/ecma/kjs_html.cpp
index 345cd61..0edb990 100644
--- a/WebCore/khtml/ecma/kjs_html.cpp
+++ b/WebCore/khtml/ecma/kjs_html.cpp
@@ -358,7 +358,7 @@ void KJS::HTMLDocument::putValue(ExecState *exec, int token, const Value& value,
        str = resolvedURL.url();
       }
 
-      part->scheduleRedirection(0, str);
+      part->scheduleRedirection(0, str, false/*don't lock history*/);
     }
     break;
   }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list