Commit ab6f8f8b authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Create URL moniker after test initialization.

parent 81715d00
......@@ -4445,9 +4445,6 @@ static void test_HTMLDocument_http(void)
trace("Testing HTMLDocument (http)...\n");
hres = CreateURLMoniker(NULL, http_urlW, &http_mon);
ok(hres == S_OK, "CreateURLMoniker failed: %08x\n", hres);
init_test(LD_DOLOAD);
ipsex = TRUE;
......@@ -4456,6 +4453,9 @@ static void test_HTMLDocument_http(void)
return;
doc_unk = (IUnknown*)doc;
hres = CreateURLMoniker(NULL, http_urlW, &http_mon);
ok(hres == S_OK, "CreateURLMoniker failed: %08x\n", hres);
test_ConnectionPointContainer(doc);
test_GetCurMoniker((IUnknown*)doc, NULL, NULL);
test_Persist(doc, http_mon);
......
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