[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
darin
darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:46:10 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit a5cb78bba7d64e45db74909c05ec9dda4a178148
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Oct 1 22:28:34 2002 +0000
- fixed 3055076 -- window.scroll does a window.scrollby, not a window.scrollto
* khtml/ecma/kjs_window.cpp: (WindowFunc::tryCall): Moved a case so that the
scroll code would scroll to, not by.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2220 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 0b5435b..0fe61e7 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-10-01 Darin Adler <darin at apple.com>
+
+ - fixed 3055076 -- window.scroll does a window.scrollby, not a window.scrollto
+
+ * khtml/ecma/kjs_window.cpp: (WindowFunc::tryCall): Moved a case so that the
+ scroll code would scroll to, not by.
+
2002-10-01 David Hyatt <hyatt at apple.com>
Fix the case sensitivity problem with attribute names
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 0b5435b..0fe61e7 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,10 @@
+2002-10-01 Darin Adler <darin at apple.com>
+
+ - fixed 3055076 -- window.scroll does a window.scrollby, not a window.scrollto
+
+ * khtml/ecma/kjs_window.cpp: (WindowFunc::tryCall): Moved a case so that the
+ scroll code would scroll to, not by.
+
2002-10-01 David Hyatt <hyatt at apple.com>
Fix the case sensitivity problem with attribute names
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0b5435b..0fe61e7 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,10 @@
+2002-10-01 Darin Adler <darin at apple.com>
+
+ - fixed 3055076 -- window.scroll does a window.scrollby, not a window.scrollto
+
+ * khtml/ecma/kjs_window.cpp: (WindowFunc::tryCall): Moved a case so that the
+ scroll code would scroll to, not by.
+
2002-10-01 David Hyatt <hyatt at apple.com>
Fix the case sensitivity problem with attribute names
diff --git a/WebCore/khtml/ecma/kjs_window.cpp b/WebCore/khtml/ecma/kjs_window.cpp
index d67c428..810deed 100644
--- a/WebCore/khtml/ecma/kjs_window.cpp
+++ b/WebCore/khtml/ecma/kjs_window.cpp
@@ -1178,11 +1178,11 @@ Value WindowFunc::tryCall(ExecState *exec, Object &thisObj, const List &args)
return Undefined();
}
}
- case Window::Scroll:
case Window::ScrollBy:
if(args.size() == 2 && widget)
widget->scrollBy(args[0].toInt32(exec), args[1].toInt32(exec));
return Undefined();
+ case Window::Scroll:
case Window::ScrollTo:
if(args.size() == 2 && widget)
widget->setContentsPos(args[0].toInt32(exec), args[1].toInt32(exec));
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list