Jacek Caban : mshtml: Fixed script tests on IE9.

Alexandre Julliard julliard at winehq.org
Tue Nov 15 13:17:35 CST 2011


Module: wine
Branch: master
Commit: e7bbb4ef1e95396b72a58f813b4346d9abccb699
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e7bbb4ef1e95396b72a58f813b4346d9abccb699

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Tue Nov 15 19:58:27 2011 +0100

mshtml: Fixed script tests on IE9.

---

 dlls/mshtml/tests/script.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/tests/script.c b/dlls/mshtml/tests/script.c
index 5cac14a..d1a4d4a 100644
--- a/dlls/mshtml/tests/script.c
+++ b/dlls/mshtml/tests/script.c
@@ -2115,7 +2115,6 @@ static HRESULT WINAPI ActiveScriptParse_ParseScriptText(IActiveScriptParse *ifac
         LPCOLESTR pstrDelimiter, CTXARG_T dwSourceContextCookie, ULONG ulStartingLine,
         DWORD dwFlags, VARIANT *pvarResult, EXCEPINFO *pexcepinfo)
 {
-    ok(!punkContext, "punkContext = %p\n", punkContext);
     ok(pvarResult != NULL, "pvarResult == NULL\n");
     ok(pexcepinfo != NULL, "pexcepinfo == NULL\n");
 
@@ -2185,7 +2184,7 @@ static HRESULT WINAPI ActiveScript_QueryInterface(IActiveScript *iface, REFIID r
     if(IsEqualGUID(&IID_IActiveScriptDebug, riid))
         return E_NOINTERFACE;
 
-    ok(0, "unexpected riid %s\n", debugstr_guid(riid));
+    trace("QI(%s)\n", debugstr_guid(riid));
     return E_NOINTERFACE;
 }
 




More information about the wine-cvs mailing list