mshtml: Add HTMLWindow_scrollTo implementation.

This commit is contained in:
Sinitsin Ivan 2008-07-02 10:20:42 +04:00 committed by Alexandre Julliard
parent 13f202a6e9
commit e731a42b90

View File

@ -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)