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
170
enum AncestorDisabledState { AncestorDisabledStateUnknown, AncestorDisabledStateEnabled,
AncestorDisabledStateDisabled
};
HTMLFormControlElement.cpp
124
m_ancestorDisabledState = (fieldSetAncestor && fieldSetAncestor->isDisabledFormControl() && !(legendAncestor && legendAncestor == fieldSetAncestor->legend())) ?
AncestorDisabledStateDisabled
: AncestorDisabledStateEnabled;
303
return m_ancestorDisabledState ==
AncestorDisabledStateDisabled
;
Completed in 42 milliseconds