From a0561068e3987e08d80d492de17e505d5934d75b Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Tue, 28 Nov 2017 17:31:33 +0100 Subject: [PATCH] mshtml: Return S_OK in IHTMLStyle2::put_behavior. Signed-off-by: Jacek Caban Signed-off-by: Alexandre Julliard --- dlls/mshtml/htmlstyle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/htmlstyle.c b/dlls/mshtml/htmlstyle.c index 12ce92bb892..fcec2647482 100644 --- a/dlls/mshtml/htmlstyle.c +++ b/dlls/mshtml/htmlstyle.c @@ -3256,7 +3256,7 @@ static HRESULT WINAPI HTMLStyle2_put_behavior(IHTMLStyle2 *iface, BSTR v) { HTMLStyle *This = impl_from_IHTMLStyle2(iface); FIXME("(%p)->(%s)\n", This, debugstr_w(v)); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI HTMLStyle2_get_behavior(IHTMLStyle2 *iface, BSTR *p) -- 2.11.4.GIT