Lines Matching full:currentform
499 HRESULT STDMETHODCALLTYPE WebFrame::currentForm(
500 /* [retval][out] */ IDOMElement **currentForm)
502 if (!currentForm) {
507 *currentForm = 0;
510 if (HTMLFormElement* formElement = coreFrame->selection()->currentForm())
511 *currentForm = DOMElement::createInstance(formElement);
514 return *currentForm ? S_OK : E_FAIL;