mshtml: Removed ref count tests that fail on some Windows.

This commit is contained in:
Jacek Caban 2009-12-10 01:10:20 +01:00 committed by Alexandre Julliard
parent 64b651e262
commit ce7f764b0c
1 changed files with 1 additions and 3 deletions

View File

@ -1801,7 +1801,6 @@ static void run_test(const char *str, testfunc_t test)
{ {
IHTMLDocument2 *doc; IHTMLDocument2 *doc;
IHTMLElement *body = NULL; IHTMLElement *body = NULL;
ULONG ref;
MSG msg; MSG msg;
HRESULT hres; HRESULT hres;
@ -1837,8 +1836,7 @@ static void run_test(const char *str, testfunc_t test)
} }
set_client_site(doc, FALSE); set_client_site(doc, FALSE);
ref = IHTMLDocument2_Release(doc); IHTMLDocument2_Release(doc);
ok(!ref, "ref = %d\n", ref);
} }
static LRESULT WINAPI wnd_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam) static LRESULT WINAPI wnd_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)