Searched defs:isDisabledFormControl (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLOptGroupElement.cpp56 bool HTMLOptGroupElement::isDisabledFormControl() const function in class:blink::HTMLOptGroupElement
H A DHTMLOptionElement.cpp324 bool HTMLOptionElement::isDisabledFormControl() const function in class:blink::HTMLOptionElement
329 return isHTMLOptGroupElement(*parent) && parent->isDisabledFormControl();
H A DHTMLFormControlElement.cpp124 m_ancestorDisabledState = (fieldSetAncestor && fieldSetAncestor->isDisabledFormControl() && !(legendAncestor && legendAncestor == fieldSetAncestor->legend())) ? AncestorDisabledStateDisabled : AncestorDisabledStateEnabled;
178 if (isDisabledFormControl() && treeScope().adjustedFocusedElement() == this) {
296 bool HTMLFormControlElement::isDisabledFormControl() const function in class:blink::HTMLFormControlElement
324 return !isDisabledFormControl();
522 return canBeSuccessfulSubmitButton() && !isDisabledFormControl();
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp89 bool SliderThumbElement::isDisabledFormControl() const function in class:blink::SliderThumbElement
91 return hostInput() && hostInput()->isDisabledFormControl();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.h441 virtual bool isDisabledFormControl() const { return false; } function in class:blink::Element
665 inline bool isDisabledFormControl(const Node* node) function in namespace:blink
667 return node->isElementNode() && toElement(node)->isDisabledFormControl();

Completed in 105 milliseconds