Home | History | Annotate | Download | only in win

Lines Matching refs: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;