Home | History | Annotate | Download | only in html

Lines Matching refs:newChild

53 bool HTMLHeadElement::childAllowed(Node* newChild)
56 if (newChild->isTextNode())
57 return static_cast<Text*>(newChild)->containsOnlyWhitespace();
59 return HTMLElement::childAllowed(newChild);
62 bool HTMLHeadElement::checkDTD(const Node* newChild)
64 return newChild->hasTagName(noscriptTag) || newChild->hasTagName(titleTag) || newChild->hasTagName(isindexTag) ||
65 newChild->hasTagName(baseTag) || newChild->hasTagName(scriptTag) ||
66 newChild->hasTagName(styleTag) || newChild->hasTagName(metaTag) ||
67 newChild->hasTagName(linkTag) || newChild->isTextNode();