Home
last modified time | relevance | path

Searched refs:willValidate (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/third_party/polymer/components-chromium/core-input/
Dcore-input-extracted.js208 if (this.$.input.willValidate) {
300 get willValidate() { getter
301 return this.$.input.willValidate;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DSharedStyleFinder.cpp82 bool willValidate = candidate.willValidate(); in canShareStyleWithControl() local
84 if (willValidate != element().willValidate()) in canShareStyleWithControl()
87 …if (willValidate && (candidate.isValidFormControlElement() != element().isValidFormControlElement(… in canShareStyleWithControl()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLFormControlElement.cpp378 bool HTMLFormControlElement::willValidate() const in willValidate() function in blink::HTMLFormControlElement
425 if (renderer() && willValidate()) in updateVisibleValidationMessage()
472 if (!willValidate() || isValidFormControlElement()) in checkValidity()
494 if (willValidate() && newIsValid != m_isValid) { in setNeedsValidityCheck()
DHTMLKeygenElement.h38 virtual bool willValidate() const OVERRIDE { return false; } in willValidate() function
DHTMLOutputElement.h44 virtual bool willValidate() const OVERRIDE { return false; } in willValidate() function
DHTMLInputElement.cpp219 return willValidate() && tooLong(value(), CheckDirtyFlag); in tooLong()
224 return willValidate() && m_inputType->typeMismatch(); in typeMismatch()
229 return willValidate() && m_inputType->valueMissing(value()); in valueMissing()
234 return willValidate() && m_inputType->hasBadInput(); in hasBadInput()
239 return willValidate() && m_inputType->patternMismatch(value()); in patternMismatch()
249 return willValidate() && m_inputType->rangeUnderflow(value()); in rangeUnderflow()
254 return willValidate() && m_inputType->rangeOverflow(value()); in rangeOverflow()
259 if (!willValidate()) in validationMessage()
280 return willValidate() && m_inputType->stepMismatch(value()); in stepMismatch()
DHTMLTextAreaElement.cpp481 if (!willValidate()) in validationMessage()
499 return willValidate() && valueMissing(0); in valueMissing()
510 return willValidate() && tooLong(0, CheckDirtyFlag); in tooLong()
DHTMLFieldSetElement.idl29 readonly attribute boolean willValidate;
DHTMLButtonElement.idl34 readonly attribute boolean willValidate;
DHTMLOutputElement.idl34 readonly attribute boolean willValidate;
DHTMLObjectElement.idl41 readonly attribute boolean willValidate;
DHTMLTextAreaElement.idl42 readonly attribute boolean willValidate;
DHTMLSelectElement.idl51 readonly attribute boolean willValidate;
DHTMLFormControlElement.h90 virtual bool willValidate() const OVERRIDE;
DHTMLKeygenElement.idl41 readonly attribute boolean willValidate;
DFormAssociatedElement.cpp209 return element->willValidate() && !m_customValidationMessage.isEmpty(); in customError()
DHTMLInputElement.idl71 readonly attribute boolean willValidate;
DHTMLSelectElement.cpp156 if (!willValidate()) in validationMessage()
167 if (!willValidate()) in valueMissing()
/external/chromium_org/third_party/WebKit/Source/web/
DWebSearchableFormData.cpp173 if (isHTMLInputElement(*control) && control->willValidate()) { in findSuitableSearchInputElement()
/external/chromium_org/third_party/WebKit/Source/core/css/
DSelectorChecker.cpp812 return element.willValidate() && element.isValidFormControlElement(); in checkOne()
815 return element.willValidate() && !element.isValidFormControlElement(); in checkOne()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.h431 virtual bool willValidate() const { return false; } in willValidate() function