OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AncestorDisabledStateDisabled
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlElement.h
163
enum AncestorDisabledState { AncestorDisabledStateUnknown, AncestorDisabledStateEnabled,
AncestorDisabledStateDisabled
};
HTMLFormControlElement.cpp
116
m_ancestorDisabledState = (fieldSetAncestor && fieldSetAncestor->isDisabledFormControl() && !(legendAncestor && legendAncestor == fieldSetAncestor->legend())) ?
AncestorDisabledStateDisabled
: AncestorDisabledStateEnabled;
312
return m_ancestorDisabledState ==
AncestorDisabledStateDisabled
;
Completed in 442 milliseconds