Home
last modified time | relevance | path

Searched refs:indeterminate (Results 1 – 18 of 18) sorted by relevance

/external/webkit/WebCore/html/
DHTMLDataGridCellElement.cpp74 bool HTMLDataGridCellElement::indeterminate() const in indeterminate() function in WebCore::HTMLDataGridCellElement
79 void HTMLDataGridCellElement::setIndeterminate(bool indeterminate) in setIndeterminate() argument
81 setAttribute(indeterminateAttr, indeterminate ? "" : 0); in setIndeterminate()
DHTMLDataGridCellElement.idl36 attribute boolean indeterminate; // If the checked state is indeterminate.
DHTMLDataGridCellElement.h51 bool indeterminate() const;
DHTMLInputElement.h97 virtual bool isIndeterminate() const { return indeterminate(); } in isIndeterminate()
134 bool indeterminate() const { return m_indeterminate; } in indeterminate() function
DHTMLAttributeNames.in107 indeterminate
DHTMLInputElement.idl83 attribute boolean indeterminate;
DHTMLInputElement.cpp1451 if (inputType() != CHECKBOX || indeterminate() == _indeterminate) in setIndeterminate()
1953 if (indeterminate()) { in preDispatchEventHandler()
/external/webkit/WebCore/css/
DCSSSelector.cpp101 DEFINE_STATIC_LOCAL(AtomicString, indeterminate, ("indeterminate")); in extractPseudoType()
238 else if (m_value == indeterminate) in extractPseudoType()
/external/webkit/WebKitTools/iExploder/htdocs/
Dhtmlattrs.in102 indeterminate
/external/webkit/WebCore/platform/mac/
DThemeMac.mm119 bool indeterminate = (states & IndeterminateState);
122 if (oldIndeterminate != indeterminate || checked != oldChecked)
123 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
/external/webkit/WebCore/platform/chromium/
DThemeChromiumMac.mm265 bool indeterminate = (states & IndeterminateState);
268 if (oldIndeterminate != indeterminate || checked != oldChecked)
269 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
/external/webkit/WebCore/rendering/
DRenderThemeChromiumMac.mm610 bool indeterminate = isIndeterminate(o);
613 if (oldIndeterminate != indeterminate) {
614 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
DRenderThemeMac.mm539 bool indeterminate = isIndeterminate(o);
542 if (oldIndeterminate != indeterminate) {
543 [cell setState:indeterminate ? NSMixedState : (checked ? NSOnState : NSOffState)];
/external/webkit/WebCore/bindings/objc/
DPublicDOMInterfaces.h617 @property BOOL indeterminate AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
/external/webkit/WebCore/
DChangeLog-2005-12-198280 style. These include enabled, checked and indeterminate.
8399 Add support for the indeterminate boolean for placing checkboxes
8402 Along with this feature, add support for the CSS3 :indeterminate
8408 Specifically "indeterminate" has no effect on form submission, it does not
8415 fast/forms/indeterminate.html
8435 (DOM::HTMLInputElementImpl::indeterminate):
DChangeLog-2005-08-2321979 out of the map is indeterminate, we got unpredictable results.
DChangeLog-2008-08-1030018 a tri-state checkbox in the indeterminate state.
DChangeLog-2010-01-2995941 (WebCore::HTMLDataGridCellElement::indeterminate):