Home | History | Annotate | Download | only in parser

Lines Matching refs:targetTag

421 bool inScopeCommon(HTMLElementStack::ElementRecord* top, const AtomicString& targetTag)
425 if (node->hasLocalName(targetTag))
473 bool HTMLElementStack::inScope(const AtomicString& targetTag) const
475 return inScopeCommon<isScopeMarker>(m_top.get(), targetTag);
484 bool HTMLElementStack::inListItemScope(const AtomicString& targetTag) const
486 return inScopeCommon<isListItemScopeMarker>(m_top.get(), targetTag);
495 bool HTMLElementStack::inTableScope(const AtomicString& targetTag) const
497 return inScopeCommon<isTableScopeMarker>(m_top.get(), targetTag);
506 bool HTMLElementStack::inButtonScope(const AtomicString& targetTag) const
508 return inScopeCommon<isButtonScopeMarker>(m_top.get(), targetTag);
517 bool HTMLElementStack::inSelectScope(const AtomicString& targetTag) const
519 return inScopeCommon<isSelectScopeMarker>(m_top.get(), targetTag);