Commit 282b2608 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fixed tests on old IEs.

parent bfd25b4f
......@@ -2091,6 +2091,10 @@ static void test_ui(void)
HRESULT hres;
hres = IActiveScriptSite_QueryInterface(site, &IID_IActiveScriptSiteUIControl, (void**)&ui_control);
if(hres == E_NOINTERFACE) {
win_skip("IActiveScriptSiteUIControl not supported\n");
return;
}
ok(hres == S_OK, "Could not get IActiveScriptSiteUIControl: %08x\n", hres);
hres = IActiveScriptSiteUIControl_GetUIBehavior(ui_control, SCRIPTUICITEM_MSGBOX, &uic_handling);
......
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