From 74071b0505234c7dab9b1fd69bd4692dbaf20506 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sun, 4 Oct 2009 21:59:05 +0200 Subject: [PATCH] mshtml: Added IHTMLElement2::clientLeft implementation. --- dlls/mshtml/htmlelem2.c | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmlelem2.c b/dlls/mshtml/htmlelem2.c index 5b58fd4fc1b..b870a2a5ad1 100644 --- a/dlls/mshtml/htmlelem2.c +++ b/dlls/mshtml/htmlelem2.c @@ -614,8 +614,25 @@ static HRESULT WINAPI HTMLElement2_get_clientTop(IHTMLElement2 *iface, LONG *p) static HRESULT WINAPI HTMLElement2_get_clientLeft(IHTMLElement2 *iface, LONG *p) { HTMLElement *This = HTMLELEM2_THIS(iface); - FIXME("(%p)->(%p)\n", This, p); - return E_NOTIMPL; + nsIDOMNSElement *nselem; + PRInt32 client_left = 0; + nsresult nsres; + + TRACE("(%p)->(%p)\n", This, p); + + nsres = nsIDOMElement_QueryInterface(This->nselem, &IID_nsIDOMNSElement, (void**)&nselem); + if(NS_SUCCEEDED(nsres)) { + nsres = nsIDOMNSElement_GetClientLeft(nselem, &client_left); + nsIDOMNSElement_Release(nselem); + if(NS_FAILED(nsres)) + ERR("GetScrollHeight failed: %08x\n", nsres); + }else { + ERR("Could not get nsIDOMNSElement interface: %08x\n", nsres); + } + + *p = client_left; + TRACE("*p = %d\n", *p); + return S_OK; } static HRESULT WINAPI HTMLElement2_attachEvent(IHTMLElement2 *iface, BSTR event,