Module: wine Branch: master Commit: ca3178d0c51a24456473775c05c509e97bdb229f URL: http://source.winehq.org/git/wine.git/?a=commit;h=ca3178d0c51a24456473775c05...
Author: Jacek Caban jacek@codeweavers.com Date: Thu Mar 31 14:50:11 2016 +0200
mshtml: Added IHTMLElement::get_outerText implementation.
Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/mshtml/htmlelem.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmlelem.c b/dlls/mshtml/htmlelem.c index 0329f1b..6d00063 100644 --- a/dlls/mshtml/htmlelem.c +++ b/dlls/mshtml/htmlelem.c @@ -1559,8 +1559,11 @@ static HRESULT WINAPI HTMLElement_put_outerText(IHTMLElement *iface, BSTR v) static HRESULT WINAPI HTMLElement_get_outerText(IHTMLElement *iface, BSTR *p) { HTMLElement *This = impl_from_IHTMLElement(iface); - FIXME("(%p)->(%p)\n", This, p); - return E_NOTIMPL; + + TRACE("(%p)->(%p)\n", This, p); + + /* getter is the same as innerText */ + return IHTMLElement_get_innerText(&This->IHTMLElement_iface, p); }
static HRESULT insert_adjacent_node(HTMLElement *This, const WCHAR *where, nsIDOMNode *nsnode, HTMLDOMNode **ret_node)