mshtml/tests: Remove old system version check that doesn't work anymore.

This commit is contained in:
Nikolay Sivov 2014-04-21 16:11:02 +04:00 committed by Alexandre Julliard
parent 1d865f90d6
commit 95b6958752
1 changed files with 0 additions and 6 deletions

View File

@ -2691,12 +2691,6 @@ static BOOL check_ie(void)
IHTMLDocument5 *doc;
HRESULT hres;
static const WCHAR xW[] = {'x',0};
static const WCHAR yW[] = {'y',0};
if(!lstrcmpW(xW, yW))
return FALSE;
hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
&IID_IHTMLDocument5, (void**)&doc);
if(FAILED(hres))