From e731a42b90da77fa0d17cf61a64013b43a86587d Mon Sep 17 00:00:00 2001 From: Sinitsin Ivan Date: Wed, 2 Jul 2008 10:20:42 +0400 Subject: [PATCH] mshtml: Add HTMLWindow_scrollTo implementation. --- dlls/mshtml/htmlwindow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlwindow.c b/dlls/mshtml/htmlwindow.c index 45c6cb769e5..9943b63a66d 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)