Home
last modified time | relevance | path

Searched refs:sourceElement (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/html/
DHTMLInputElement.cpp832 const HTMLInputElement* sourceElement = static_cast<const HTMLInputElement*>(source); in copyNonAttributeProperties() local
834 m_data.setValue(sourceElement->m_data.value()); in copyNonAttributeProperties()
835 setChecked(sourceElement->m_isChecked); in copyNonAttributeProperties()
836 m_reflectsCheckedAttribute = sourceElement->m_reflectsCheckedAttribute; in copyNonAttributeProperties()
837 m_isIndeterminate = sourceElement->m_isIndeterminate; in copyNonAttributeProperties()
1340 HTMLDataListElement* sourceElement = dataList(); in selectedOption() local
1341 if (!sourceElement) in selectedOption()
1343 RefPtr<HTMLCollection> options = sourceElement->options(); in selectedOption()
/external/webkit/Source/WebCore/wml/
DWMLTableElement.h47 …void transferAllChildrenOfElementToTargetElement(WMLElement* sourceElement, WMLElement* targetElem…
DWMLTableElement.cpp138 void WMLTableElement::transferAllChildrenOfElementToTargetElement(WMLElement* sourceElement, WMLEle… in transferAllChildrenOfElementToTargetElement() argument
140 RefPtr<NodeList> children = sourceElement->childNodes(); in transferAllChildrenOfElementToTargetElement()
DWMLInputElement.cpp244 const WMLInputElement* sourceElement = static_cast<const WMLInputElement*>(source); in copyNonAttributeProperties() local
245 m_data.setValue(sourceElement->m_data.value()); in copyNonAttributeProperties()
/external/webkit/Source/WebCore/dom/
DStyledElement.cpp422 void StyledElement::copyNonAttributeProperties(const Element *sourceElement) in copyNonAttributeProperties() argument
424 const StyledElement* source = static_cast<const StyledElement*>(sourceElement); in copyNonAttributeProperties()
432 Element::copyNonAttributeProperties(sourceElement); in copyNonAttributeProperties()