Searched refs:inputElement (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/InjectedBundle/
H A DInjectedBundlePageFormClient.cpp47 void InjectedBundlePageFormClient::didFocusTextField(WebPage* page, HTMLInputElement* inputElement, WebFrame* frame) argument
52 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
56 void InjectedBundlePageFormClient::textFieldDidBeginEditing(WebPage* page, HTMLInputElement* inputElement, WebFrame* frame) argument
61 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
65 void InjectedBundlePageFormClient::textFieldDidEndEditing(WebPage* page, HTMLInputElement* inputElement, WebFrame* frame) argument
70 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
74 void InjectedBundlePageFormClient::textDidChangeInTextField(WebPage* page, HTMLInputElement* inputElement, WebFrame* frame, bool initiatedByUserTyping) argument
82 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
118 bool InjectedBundlePageFormClient::shouldPerformActionInTextField(WebPage* page, HTMLInputElement* inputElement, API::InjectedBundle::FormClient::InputFieldAction actionType, WebFrame* frame) argument
123 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
[all...]
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DDOMHTMLClasses.cpp996 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
998 domElement.adoptRef(DOMHTMLElement::createInstance(inputElement->form()));
1078 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1079 *result = inputElement->isDisabledFormControl() ? TRUE : FALSE;
1122 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1123 *result = inputElement->isReadOnly() ? TRUE : FALSE;
1187 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1189 inputElement->setType(typeString);
1211 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1212 WTF::String valueString = inputElement
1223 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1233 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1241 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1256 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1265 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1274 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1283 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1295 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1331 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1348 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1359 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
1369 HTMLInputElement* inputElement = toHTMLInputElement(m_element); local
[all...]
H A DWebFrame.cpp1122 HTMLInputElement *inputElement = inputElementFromDOMElement(element);
1123 if (!inputElement)
1126 HTMLFormElement *formElement = inputElement->form();
1140 HTMLInputElement *inputElement = inputElementFromDOMElement(element);
1141 if (!inputElement)
1144 *result = inputElement->isTextField() && !inputElement->isPasswordField() && inputElement->shouldAutocomplete();
1301 HTMLInputElement* inputElement = inputElementFromDOMElement(element); local
1302 *result = inputElement
[all...]
/macosx-10.10.1/WebKit-7600.1.25/mac/WebView/
H A DWebHTMLRepresentation.mm313 HTMLInputElement* inputElement = inputElementFromDOMElement(element);
314 return inputElement
315 && inputElement->isTextField()
316 && !inputElement->isPasswordField()
317 && inputElement->shouldAutocomplete();
322 HTMLInputElement* inputElement = inputElementFromDOMElement(element);
323 return inputElement && inputElement->isPasswordField();
328 HTMLInputElement* inputElement = inputElementFromDOMElement(element);
329 return inputElement
[all...]
/macosx-10.10.1/WebKit-7600.1.25/ios/WebCoreSupport/
H A DWebChromeClientIOS.mm317 HTMLInputElement* inputElement = toHTMLInputElement(element);
318 if (!inputElement->isText())
321 CallFormDelegate(webView(), @selector(didFocusTextField:inFrame:), kit(inputElement), kit(inputElement->document().frame()));
/macosx-10.10.1/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebEditorClient.mm713 DOMHTMLInputElement* inputElement = kit(toHTMLInputElement(element));
714 FormDelegateLog(inputElement);
715 CallFormDelegate(m_webView, @selector(textFieldDidBeginEditing:inFrame:), inputElement, kit(element->document().frame()));
723 DOMHTMLInputElement* inputElement = kit(toHTMLInputElement(element));
724 FormDelegateLog(inputElement);
725 CallFormDelegate(m_webView, @selector(textFieldDidEndEditing:inFrame:), inputElement, kit(element->document().frame()));
738 DOMHTMLInputElement* inputElement = kit(toHTMLInputElement(element));
739 FormDelegateLog(inputElement);
740 CallFormDelegate(m_webView, @selector(textDidChangeInTextField:inFrame:), inputElement, kit(element->document().frame()));
771 DOMHTMLInputElement* inputElement
[all...]
H A DWebChromeClient.mm226 HTMLInputElement* inputElement = toHTMLInputElement(element);
227 if (!inputElement->isText())
230 CallFormDelegate(m_webView, @selector(didFocusTextField:inFrame:), kit(inputElement), kit(inputElement->document().frame()));
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/mac/
H A DWKWebProcessPlugInBrowserContextController.mm412 virtual void didFocusTextField(WebPage*, HTMLInputElement* inputElement, WebFrame* frame) override
417 [formDelegate _webProcessPlugInBrowserContextController:m_controller didFocusTextField:wrapper(*InjectedBundleNodeHandle::getOrCreate(inputElement).get()) inFrame:wrapper(*frame)];
467 virtual void textDidChangeInTextField(WebPage*, HTMLInputElement* inputElement, WebFrame* frame, bool initiatedByUserTyping) override
472 [formDelegate _webProcessPlugInBrowserContextController:m_controller textDidChangeInTextField:wrapper(*WebKit::InjectedBundleNodeHandle::getOrCreate(inputElement)) inFrame:wrapper(*frame) initiatedByUserTyping:initiatedByUserTyping];
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebChromeClient.cpp184 HTMLInputElement* inputElement = toHTMLInputElement(element);
185 if (!inputElement->isText())
190 m_page->injectedBundleFormClient().didFocusTextField(m_page, inputElement, webFrame);

Completed in 127 milliseconds