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/
HTMLKeygenElement.h 37 virtual bool willValidate() const OVERRIDE { return false; }
HTMLFieldSetElement.idl 29 readonly attribute boolean willValidate;
HTMLKeygenElement.idl 41 readonly attribute boolean willValidate;
HTMLOutputElement.idl 34 readonly attribute boolean willValidate;
HTMLOutputElement.h 43 virtual bool willValidate() const OVERRIDE { return false; }
HTMLButtonElement.idl 34 readonly attribute boolean willValidate;
HTMLObjectElement.idl 41 readonly attribute boolean willValidate;
HTMLSelectElement.idl 51 readonly attribute boolean willValidate;
HTMLTextAreaElement.idl 42 readonly attribute boolean willValidate;
HTMLFormControlElement.cpp 374 bool HTMLFormControlElement::willValidate() const
394 // We need to recalculate willValidate immediately because willValidate change can causes style change.
412 if (renderer() && willValidate())
427 if (!willValidate() || isValidFormControlElement())
449 if (willValidate() && newIsValid != m_isValid) {
HTMLFormControlElement.h 90 virtual bool willValidate() const OVERRIDE;
138 // This must be called any time the result of willValidate() has changed.
HTMLInputElement.cpp 216 return willValidate() && tooLong(value(), CheckDirtyFlag);
221 return willValidate() && m_inputType->typeMismatch();
226 return willValidate() && m_inputType->valueMissing(value());
231 return willValidate() && m_inputType->hasBadInput();
236 return willValidate() && m_inputType->patternMismatch(value());
259 return willValidate() && m_inputType->rangeUnderflow(value());
264 return willValidate() && m_inputType->rangeOverflow(value());
269 if (!willValidate())
290 return willValidate() && m_inputType->stepMismatch(value());
    [all...]
HTMLTextAreaElement.cpp 468 if (!willValidate())
485 return willValidate() && valueMissing(value());
490 return willValidate() && tooLong(value(), CheckDirtyFlag);
HTMLInputElement.idl 71 readonly attribute boolean willValidate;
FormAssociatedElement.cpp 207 return element->willValidate() && !m_customValidationMessage.isEmpty();
HTMLSelectElement.cpp 145 if (!willValidate())
156 if (!willValidate())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 83 bool willValidate = candidate.willValidate();
85 if (willValidate != element().willValidate())
88 if (willValidate && (candidate.isValidFormControlElement() != element().isValidFormControlElement()))
  /external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp 171 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 448 virtual bool willValidate() const { return false; }
    [all...]

Completed in 707 milliseconds