22 Oct
2025
22 Oct
'25
3:17 p.m.
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`?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9252#note_119323