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

mshtml: Added get_body test.

parent fac2121e
......@@ -96,7 +96,10 @@ static void test_doc_elem(IHTMLDocument2 *doc)
ok(hres == S_OK, "get_documentElement failed: %08x\n", hres);
test_node_name((IUnknown*)elem, "HTML");
IHTMLElement_Release(elem);
hres = IHTMLDocument2_get_body(doc, &elem);
test_node_name((IUnknown*)elem, "BODY");
IHTMLElement_Release(elem);
}
......
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