Searched refs:targetTag (Results 1 – 2 of 2) sorted by relevance
451 bool inScopeCommon(HTMLElementStack::ElementRecord* top, const AtomicString& targetTag) in inScopeCommon() argument455 if (item->matchesHTMLTag(targetTag)) in inScopeCommon()490 bool HTMLElementStack::inScope(const AtomicString& targetTag) const in inScope()492 return inScopeCommon<isScopeMarker>(m_top.get(), targetTag); in inScope()500 bool HTMLElementStack::inListItemScope(const AtomicString& targetTag) const in inListItemScope()502 return inScopeCommon<isListItemScopeMarker>(m_top.get(), targetTag); in inListItemScope()510 bool HTMLElementStack::inTableScope(const AtomicString& targetTag) const in inTableScope()512 return inScopeCommon<isTableScopeMarker>(m_top.get(), targetTag); in inTableScope()520 bool HTMLElementStack::inButtonScope(const AtomicString& targetTag) const in inButtonScope()522 return inScopeCommon<isButtonScopeMarker>(m_top.get(), targetTag); in inButtonScope()[all …]
2874 var targetTag = e.target.tagName;2876 (targetTag != 'INPUT' &&2877 targetTag != 'BUTTON' &&2878 targetTag != 'A')) {