HomeSort by relevance Sort by last modified time
    Searched refs:willValidate (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFieldSetElement.idl 29 readonly attribute boolean willValidate;
HTMLKeygenElement.h 38 virtual bool willValidate() const OVERRIDE { return false; }
HTMLButtonElement.idl 34 readonly attribute boolean willValidate;
HTMLKeygenElement.idl 41 readonly attribute boolean willValidate;
HTMLOutputElement.idl 34 readonly attribute boolean willValidate;
HTMLOutputElement.h 44 virtual bool willValidate() const OVERRIDE { return false; }
HTMLSelectElement.idl 51 readonly attribute boolean willValidate;
HTMLObjectElement.idl 41 readonly attribute boolean willValidate;
HTMLTextAreaElement.idl 42 readonly attribute boolean willValidate;
HTMLFormControlElement.cpp 378 bool HTMLFormControlElement::willValidate() const
398 // We need to recalculate willValidate immediately because willValidate change can causes style change.
425 if (renderer() && willValidate())
472 if (!willValidate() || isValidFormControlElement())
494 if (willValidate() && newIsValid != m_isValid) {
HTMLInputElement.cpp 219 return willValidate() && tooLong(value(), CheckDirtyFlag);
224 return willValidate() && m_inputType->typeMismatch();
229 return willValidate() && m_inputType->valueMissing(value());
234 return willValidate() && m_inputType->hasBadInput();
239 return willValidate() && m_inputType->patternMismatch(value());
249 return willValidate() && m_inputType->rangeUnderflow(value());
254 return willValidate() && m_inputType->rangeOverflow(value());
259 if (!willValidate())
280 return willValidate() && m_inputType->stepMismatch(value());
    [all...]
HTMLTextAreaElement.cpp 481 if (!willValidate())
499 return willValidate() && valueMissing(0);
510 return willValidate() && tooLong(0, CheckDirtyFlag);
HTMLFormControlElement.h 90 virtual bool willValidate() const OVERRIDE;
139 // This must be called any time the result of willValidate() has changed.
HTMLInputElement.idl 71 readonly attribute boolean willValidate;
FormAssociatedElement.cpp 209 return element->willValidate() && !m_customValidationMessage.isEmpty();
HTMLSelectElement.cpp 156 if (!willValidate())
167 if (!willValidate())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 82 bool willValidate = candidate.willValidate();
84 if (willValidate != element().willValidate())
87 if (willValidate && (candidate.isValidFormControlElement() != element().isValidFormControlElement()))
  /external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp 173 if (isHTMLInputElement(*control) && control->willValidate()) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorChecker.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 431 virtual bool willValidate() const { return false; }
    [all...]

Completed in 351 milliseconds