mshtml/tests: Skip documentMode tests on IE7.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2017-12-11 17:36:44 +01:00 committed by Alexandre Julliard
parent e14e6fdbce
commit eaca5e023e
1 changed files with 4 additions and 0 deletions

View File

@ -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;