Commit 2b4dcb25 authored by Sinitsin Ivan's avatar Sinitsin Ivan Committed by Alexandre Julliard

mshtml: Add HTMLWindow_scrollBy implementation.

parent e731a42b
......@@ -642,8 +642,8 @@ static HRESULT WINAPI HTMLWindow2_toString(IHTMLWindow2 *iface, BSTR *String)
static HRESULT WINAPI HTMLWindow2_scrollBy(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_ScrollBy(This->nswindow, x, y);
}
static HRESULT WINAPI HTMLWindow2_scrollTo(IHTMLWindow2 *iface, long x, long y)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment