Home
last modified time | relevance | path

Searched refs:idAttrVal (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLFormControlsCollection.cpp133 const AtomicString& idAttrVal = element->getIdAttribute(); in updateNameCache() local
135 if (!idAttrVal.isEmpty()) { in updateNameCache()
136 appendIdCache(idAttrVal, element); in updateNameCache()
137 foundInputElements.add(idAttrVal.impl()); in updateNameCache()
139 if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal) { in updateNameCache()
150 const AtomicString& idAttrVal = element->getIdAttribute(); in updateNameCache() local
152 if (!idAttrVal.isEmpty() && !foundInputElements.contains(idAttrVal.impl())) in updateNameCache()
153 appendIdCache(idAttrVal, element); in updateNameCache()
154 …if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal && !foundInputElements.contains(nameAttrVal… in updateNameCache()
DHTMLCollection.cpp633 const AtomicString& idAttrVal = element->getIdAttribute(); in updateNameCache() local
634 if (!idAttrVal.isEmpty()) in updateNameCache()
635 appendIdCache(idAttrVal, element); in updateNameCache()
639 …if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal && (type() != DocAll || nameShouldBeVisible… in updateNameCache()