mshtml: Add HTMLWindow_scrollTo implementation.
This commit is contained in:
parent
13f202a6e9
commit
e731a42b90
@ -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)
|
static HRESULT WINAPI HTMLWindow2_scrollTo(IHTMLWindow2 *iface, long x, long y)
|
||||||
{
|
{
|
||||||
HTMLWindow *This = HTMLWINDOW2_THIS(iface);
|
HTMLWindow *This = HTMLWINDOW2_THIS(iface);
|
||||||
FIXME("(%p)->(%ld %ld)\n", This, x, y);
|
TRACE("(%p)->(%ld %ld)\n", This, x, y);
|
||||||
return E_NOTIMPL;
|
return nsIDOMWindow_ScrollTo(This->nswindow, x, y);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI HTMLWindow2_moveTo(IHTMLWindow2 *iface, long x, long y)
|
static HRESULT WINAPI HTMLWindow2_moveTo(IHTMLWindow2 *iface, long x, long y)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user