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

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLOptGroupElement.cpp51 bool HTMLOptGroupElement::isDisabledFormControl() const function in class:WebCore::HTMLOptGroupElement
H A DHTMLOptionElement.cpp337 bool HTMLOptionElement::isDisabledFormControl() const function in class:WebCore::HTMLOptionElement
342 return isHTMLOptGroupElement(parent) && parent->isDisabledFormControl();
H A DHTMLFormControlElement.cpp113 m_ancestorDisabledState = (fieldSetAncestor && fieldSetAncestor->isDisabledFormControl() && !(legendAncestor && legendAncestor == fieldSetAncestor->legend())) ? AncestorDisabledStateDisabled : AncestorDisabledStateEnabled;
160 if (isDisabledFormControl() && treeScope()->adjustedFocusedElement() == this) {
279 bool HTMLFormControlElement::isDisabledFormControl() const function in class:WebCore::HTMLFormControlElement
312 return !isDisabledFormControl();
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DSliderThumbElement.cpp227 bool SliderThumbElement::isDisabledFormControl() const function in class:WebCore::SliderThumbElement
229 return hostInput() && hostInput()->isDisabledFormControl();
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.h595 virtual bool isDisabledFormControl() const { return false; } function in class:WebCore::Element
805 inline bool isDisabledFormControl(const Node* node) function in namespace:WebCore
807 return node->isElementNode() && toElement(node)->isDisabledFormControl();

Completed in 110 milliseconds