From dcfdbbfa41ec8658326ec5bcb8d34a7ca562723b Mon Sep 17 00:00:00 2001 From: Li Zhenbo Date: Sat, 1 Mar 2014 17:04:50 +0800 Subject: [PATCH 02/10] mshtml: Added IHTMLTableRow::get_align implementation. --- dlls/mshtml/htmltablerow.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dlls/mshtml/htmltablerow.c b/dlls/mshtml/htmltablerow.c index 80994b5..f024467 100644 --- a/dlls/mshtml/htmltablerow.c +++ b/dlls/mshtml/htmltablerow.c @@ -128,8 +128,15 @@ static HRESULT WINAPI HTMLTableRow_put_align(IHTMLTableRow *iface, BSTR v) static HRESULT WINAPI HTMLTableRow_get_align(IHTMLTableRow *iface, BSTR *p) { HTMLTableRow *This = impl_from_IHTMLTableRow(iface); - FIXME("(%p)->(%p)\n", This, p); - return E_NOTIMPL; + nsAString val; + nsresult nsres; + + TRACE("(%p)->(%p)\n", This, p); + + nsAString_Init(&val, NULL); + nsres = nsIDOMHTMLTableRowElement_GetAlign(This->nsrow, &val); + + return return_nsstr(nsres, &val, p); } static HRESULT WINAPI HTMLTableRow_put_vAlign(IHTMLTableRow *iface, BSTR v) -- 1.8.3.1