Jacek Caban (@jacek) commented about dlls/mshtml/htmlinput.c:
static HRESULT WINAPI HTMLInputElement_private_checkValidity(IWineHTMLInputPrivate *iface, VARIANT_BOOL *ret) { HTMLInputElement *This = impl_from_IWineHTMLInputPrivateVtbl(iface);
- FIXME("(%p)->(%p)\n", This, ret);
- return E_NOTIMPL;
- nsIDOMValidityState *nsvalidity;
- DOMEvent *event;
- nsresult nsres;
- HRESULT hres;
- cpp_bool b;
- TRACE("(%p)->(%p)\n", This, ret);
- nsres = nsIDOMHTMLInputElement_GetValidity(This->nsinput, &nsvalidity);
The usual question: why don't you use Gecko's `CheckValidity`?