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 40 virtual bool willValidate() const OVERRIDE { return false; }
HTMLKeygenElement.idl 41 readonly attribute boolean willValidate;
HTMLOutputElement.idl 34 readonly attribute boolean willValidate;
HTMLOutputElement.h 43 virtual bool willValidate() const { return false; }
HTMLButtonElement.idl 34 readonly attribute boolean willValidate;
HTMLSelectElement.idl 47 readonly attribute boolean willValidate;
HTMLObjectElement.idl 41 readonly attribute boolean willValidate;
HTMLTextAreaElement.idl 42 readonly attribute boolean willValidate;
HTMLFormControlElement.cpp 381 bool HTMLFormControlElement::willValidate() const
401 // We need to recalculate willValidate immediately because willValidate change can causes style change.
419 if (renderer() && willValidate())
438 if (!willValidate() || isValidFormControlElement())
462 if (willValidate() && newIsValid != m_isValid) {
HTMLFormControlElement.h 89 virtual bool willValidate() const;
130 // This must be called any time the result of willValidate() has changed.
HTMLInputElement.cpp 242 return willValidate() && tooLong(value(), CheckDirtyFlag);
247 return willValidate() && m_inputType->typeMismatch();
252 return willValidate() && m_inputType->valueMissing(value());
257 return willValidate() && m_inputType->hasBadInput();
262 return willValidate() && m_inputType->patternMismatch(value());
285 return willValidate() && m_inputType->rangeUnderflow(value());
290 return willValidate() && m_inputType->rangeOverflow(value());
295 if (!willValidate())
316 return willValidate() && m_inputType->stepMismatch(value());
    [all...]
HTMLTextAreaElement.cpp 447 if (!willValidate())
464 return willValidate() && valueMissing(value());
469 return willValidate() && tooLong(value(), CheckDirtyFlag);
HTMLInputElement.idl 68 readonly attribute boolean willValidate;
FormAssociatedElement.cpp 190 return element->willValidate() && !m_customValidationMessage.isEmpty();
HTMLSelectElement.cpp 155 if (!willValidate())
166 if (!willValidate())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 147 bool willValidate = element->willValidate();
149 if (willValidate != context.element()->willValidate())
152 if (willValidate && (element->isValidFormControlElement() != context.element()->isValidFormControlElement()))
  /external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp 174 if (control->hasTagName(HTMLNames::inputTag) && 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 576 virtual bool willValidate() const { return false; }
    [all...]

Completed in 731 milliseconds