Lines Matching full:child
300 // child of an element.
310 for (RefPtr<Node> child = firstChild; child; child = nextChild) {
311 nextChild = child->nextSibling();
312 node->removeChild(child.get(), ignoredExceptionCode);
314 fragment->insertBefore(child, node.get(), ignoredExceptionCode);
954 const HTMLElement* child = static_cast<const HTMLElement*>(newChild);
955 if (inlineTagList()->contains(child->tagQName().localName().impl())) {
957 if (child->tagQName().localName() == styleTag) {
967 if (blockTagList()->contains(child->tagQName().localName().impl()))
969 return !isRecognizedTagName(child->tagQName()); // Accept custom html tags
981 const HTMLElement* child = static_cast<const HTMLElement*>(newChild);
982 if (inlineTagList()->contains(child->tagQName().localName().impl()))
984 return !isRecognizedTagName(child->tagQName()); // Accept custom html tags
996 const HTMLElement* child = static_cast<const HTMLElement*>(newChild);
997 return (blockTagList()->contains(child->tagQName().localName().impl()));