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

mshtml/tests: Skip documentMode tests on IE7.

parent e14e6fdb
......@@ -10597,6 +10597,10 @@ static void test_document_mode(IHTMLDocument2 *doc2)
HRESULT hres;
hres = IHTMLDocument2_QueryInterface(doc2, &IID_IHTMLDocument6, (void**)&doc);
if(hres == E_NOINTERFACE) {
win_skip("IHTMLDocument6 not supported\n");
return;
}
ok(hres == S_OK, "Could not get IHTMLDocument6 interface: %08x\n", hres);
V_VT(&v) = VT_EMPTY;
......
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