Hi Austin,
Austin English wrote:
-    hres = IHTMLDocument2_get_body(doc, &body);
-    ok(hres == S_OK, "get_body failed: %08x\n", hres);
-
     if(body) {
+        hres = IHTMLDocument2_get_body(doc, &body);
+        ok(hres == S_OK, "get_body failed: %08x\n", hres);
You check body before getting it, so it can't work and these tests would 
always be skipped. I've sent a correct version.
Jacek