Commit 6d4275c9 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mshtml/tests: Avoid an http -> https redirection.

parent 466f9790
...@@ -1844,7 +1844,7 @@ static void test_imgload(IHTMLDocument2 *doc) ...@@ -1844,7 +1844,7 @@ static void test_imgload(IHTMLDocument2 *doc)
ok(V_DISPATCH(&v) == (IDispatch*)&img_onerror_obj, "V_DISPATCH(onerror) != onerrorFunc\n"); ok(V_DISPATCH(&v) == (IDispatch*)&img_onerror_obj, "V_DISPATCH(onerror) != onerrorFunc\n");
VariantClear(&v); VariantClear(&v);
str = a2bstr("http://www.winehq.org/images/winehq_logo_text.png"); str = a2bstr("https://www.winehq.org/images/winehq_logo_text.png");
hres = IHTMLImgElement_put_src(img, str); hres = IHTMLImgElement_put_src(img, str);
ok(hres == S_OK, "put_src failed: %08x\n", hres); ok(hres == S_OK, "put_src failed: %08x\n", hres);
SysFreeString(str); SysFreeString(str);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment