Alistair Leslie-Hughes wrote:
Hi,
Changelog: mshtml: Add support for IHTMLStyle3 interface
+ + hres = IHTMLStyle_QueryInterface(style, &IID_IHTMLStyle3, (void**)&style3); + ok(hres == S_OK, "Could not get IHTMLStyle3 iface: %08x\n", hres); + if(SUCCEEDED(hres)) { + IHTMLStyle3_Release(style3); + }
Please use style_iids to test QueryInterface calls.
Jacek