mshtml: Added IHTMLObjectElement::get_width implementation.

This commit is contained in:
Jacek Caban 2012-08-16 15:42:20 +02:00 committed by Alexandre Julliard
parent d98225fff9
commit 500985bc19
1 changed files with 22 additions and 2 deletions

View File

@ -278,8 +278,28 @@ static HRESULT WINAPI HTMLObjectElement_put_width(IHTMLObjectElement *iface, VAR
static HRESULT WINAPI HTMLObjectElement_get_width(IHTMLObjectElement *iface, VARIANT *p)
{
HTMLObjectElement *This = impl_from_IHTMLObjectElement(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
nsAString width_str;
nsresult nsres;
HRESULT hres;
TRACE("(%p)->(%p)\n", This, p);
nsAString_Init(&width_str, NULL);
nsres = nsIDOMHTMLObjectElement_GetWidth(This->nsobject, &width_str);
if(NS_SUCCEEDED(nsres)) {
const PRUnichar *width;
nsAString_GetData(&width_str, &width);
V_VT(p) = VT_BSTR;
V_BSTR(p) = SysAllocString(width);
hres = V_BSTR(p) ? S_OK : E_OUTOFMEMORY;
}else {
ERR("GetWidth failed: %08x\n", nsres);
hres = E_FAIL;
}
nsAString_Finish(&width_str);
return hres;
}
static HRESULT WINAPI HTMLObjectElement_put_height(IHTMLObjectElement *iface, VARIANT v)