Lines Matching refs:InputElement
5326 * dom/InputElement.cpp:
5327 * dom/InputElement.h:
5338 … introduced SelectElement abstract base class. Follow the same design sheme that InputElement uses.
5780 to invoke InputElement::updatePlaceholderVisibility().
5893 * dom/InputElement.h:
5936 * dom/InputElement.cpp:
5937 (WebCore::InputElement::dispatchFocusEvent):
5938 (WebCore::InputElement::dispatchBlurEvent):
5939 (WebCore::InputElement::updatePlaceholderVisibility):
5940 (WebCore::InputElement::updateFocusAppearance):
5941 (WebCore::InputElement::updateSelectionRange):
5942 (WebCore::InputElement::aboutToUnload):
5943 (WebCore::InputElement::setValueFromRenderer):
5944 (WebCore::InputElement::constrainValue):
5945 (WebCore::InputElement::handleBeforeTextInsertedEvent):
5946 (WebCore::InputElement::parseSizeAttribute):
5947 (WebCore::InputElement::parseMaxLengthAttribute):
5948 (WebCore::InputElement::updateValueIfNeeded):
5949 (WebCore::InputElement::notifyFormStateChanged):
5951 * dom/InputElement.h:
10544 * dom/InputElement.cpp:
10545 (WebCore::InputElement::updatePlaceholderVisibility):
10546 * dom/InputElement.h:
11606 * dom/InputElement.cpp:
11607 (WebCore::InputElement::setValueFromRenderer):
13209 * dom/InputElement.cpp: Ditto.
19185 * dom/InputElement.cpp:
19186 (WebCore::InputElement::setValueFromRenderer):
22319 * dom/InputElement.cpp:
22320 (WebCore::InputElement::parseMaxLengthAttribute):
37444 * dom/InputElement.cpp:
37445 (WebCore::InputElement::updateSelectionRange):
41285 * dom/InputElement.cpp:
41286 (WebCore::InputElement::handleBeforeTextInsertedEvent):
46762 Move isAutofilled() / isChecked() / isIndeterminate() from Node to InputElement.
46763 Move isInputTypeHidden() / isPasswordField() from Element to InputElement.
46766 to cast Element pointers to InputElement/FormControlElement pointers.
46775 * dom/InputElement.h:
50435 * dom/InputElement.cpp:
50436 (WebCore::InputElement::setValueFromRenderer):
50438 * dom/InputElement.h:
51554 to be consistent with FormControlElement/InputElement/OptionElement/OptionGroupElement.
51557 … 'formControlElementForElement' to 'toFormControlElement' (analogous changes for InputElement etc.)
51783 * dom/InputElement.cpp: Ditto.
51923 * dom/InputElement.cpp:
51924 (WebCore::InputElement::parseMaxLengthAttribute):
51932 Add InputElement abstraction, similar to the FormControlElement refactorization
51936 …depends on HTMLInputElement directly -> change that and make it use the new InputElement abstracti…
51938 … A lot of code from HTMLInputElement now lives in InputElement, as static member functions - the
51939 …InputElement class itself is an abstract virtual class, just like ScriptElement. HTML/WMLInputElem…
51940 derive from InputElement, and hold a InputElementData member variable, that they pass to the
51941 …static functions in InputElement. The abstraction is equal to the one chosen for HTML/SVGScriptEle…
51947 * dom/InputElement.cpp: Added.
51948 (WebCore::InputElement::dispatchFocusEvent):
51949 (WebCore::InputElement::dispatchBlurEvent):
51950 (WebCore::InputElement::updatePlaceholderVisibility):
51951 (WebCore::InputElement::updateFocusAppearance):
51952 (WebCore::InputElement::updateSelectionRange):
51953 (WebCore::InputElement::aboutToUnload):
51954 (WebCore::InputElement::setValueFromRenderer):
51956 (WebCore::InputElement::constrainValue):
51958 (WebCore::InputElement::handleBeforeTextInsertedEvent):
51959 (WebCore::InputElement::parseSizeAttribute):
51960 (WebCore::InputElement::parseMaxLengthAttribute):
51961 (WebCore::InputElement::updateValueIfNeeded):
51962 (WebCore::InputElement::notifyFormStateChanged):
51967 * dom/InputElement.h: Added.
51968 (WebCore::InputElement::~InputElement):
51969 (WebCore::InputElement::InputElement):
51988 (WebCore::HTMLInputElement::updateFocusAppearance): Moved to InputElement.
51992 …(WebCore::HTMLInputElement::setSelectionRange): Moved to InputElement::updateSelectionRange, call …
52001 …(WebCore::HTMLInputElement::setFileListFromRenderer): Use new code in InputElement::setValueFromRe…
52005 … (WebCore::HTMLInputElement::constrainValue): Move functionality to InputElement::constrainValue.
52006 … (WebCore::HTMLInputElement::cacheSelection): Move functionality to InputElement::cacheSelection.