Module: wine Branch: master Commit: e731a42b90da77fa0d17cf61a64013b43a86587d URL: http://source.winehq.org/git/wine.git/?a=commit;h=e731a42b90da77fa0d17cf61a6...
Author: Sinitsin Ivan ivan@etersoft.ru Date: Wed Jul 2 10:20:42 2008 +0400
mshtml: Add HTMLWindow_scrollTo implementation.
---
dlls/mshtml/htmlwindow.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmlwindow.c b/dlls/mshtml/htmlwindow.c index 45c6cb7..9943b63 100644 --- a/dlls/mshtml/htmlwindow.c +++ b/dlls/mshtml/htmlwindow.c @@ -649,8 +649,8 @@ static HRESULT WINAPI HTMLWindow2_scrollBy(IHTMLWindow2 *iface, long x, long y) static HRESULT WINAPI HTMLWindow2_scrollTo(IHTMLWindow2 *iface, long x, long y) { HTMLWindow *This = HTMLWINDOW2_THIS(iface); - FIXME("(%p)->(%ld %ld)\n", This, x, y); - return E_NOTIMPL; + TRACE("(%p)->(%ld %ld)\n", This, x, y); + return nsIDOMWindow_ScrollTo(This->nswindow, x, y); }
static HRESULT WINAPI HTMLWindow2_moveTo(IHTMLWindow2 *iface, long x, long y)