James Hawkins : mshtml: Fix a few test failures in win2k3.

Alexandre Julliard julliard at winehq.org
Fri May 23 05:45:38 CDT 2008


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

Author: James Hawkins <jhawkins at codeweavers.com>
Date:   Fri May 23 03:17:04 2008 -0500

mshtml: Fix a few test failures in win2k3.

---

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

diff --git a/dlls/mshtml/tests/htmldoc.c b/dlls/mshtml/tests/htmldoc.c
index 34a7f24..6c1640b 100644
--- a/dlls/mshtml/tests/htmldoc.c
+++ b/dlls/mshtml/tests/htmldoc.c
@@ -356,7 +356,9 @@ static HRESULT WINAPI Protocol_Start(IInternetProtocol *iface, LPCWSTR szUrl,
     ok(bindinfo.dwBindVerb == 0, "bindinfo.dwBindVerb=%d\n", bindinfo.dwBindVerb);
     ok(bindinfo.szCustomVerb == 0, "bindinfo.szCustomVerb=%p\n", bindinfo.szCustomVerb);
     ok(bindinfo.cbstgmedData == 0, "bindinfo.cbstgmedData=%d\n", bindinfo.cbstgmedData);
-    ok(bindinfo.dwOptions == 0x80000, "bindinfo.dwOptions=%x\n", bindinfo.dwOptions);
+    ok(bindinfo.dwOptions == 0x80000 ||
+       bindinfo.dwOptions == 0x4080000, /* win2k3 */
+       "bindinfo.dwOptions=%x\n", bindinfo.dwOptions);
     ok(bindinfo.dwOptionsFlags == 0, "bindinfo.dwOptionsFlags=%d\n", bindinfo.dwOptionsFlags);
     /* TODO: test dwCodePage */
     /* TODO: test securityAttributes */




More information about the wine-cvs mailing list