Jacek Caban <ja...@codeweavers.com> writes:

> @@ -4199,9 +4199,8 @@ static void run_domtest(const char *str, domtest_t test)
>      }
>  
>      hres = IHTMLDocument2_get_body(doc, &body);
> -    ok(hres == S_OK, "get_body failed: %08x\n", hres);
> -
> -    if(body) {
> +    if(hres != E_UNEXPECTED) {
> +        ok(hres == S_OK, "get_body failed: %08x\n", hres);
>          IHTMLElement_Release(body);

We've been through this before, there needs to be at least one failure
if mshtml is non-functional because Gecko is missing. I'd suggest to
remove the Gecko install workaround and have the test force the install
in all cases, it's not useful to run the tests without Gecko anyway.

-- 
Alexandre Julliard
julli...@winehq.org


Reply via email to