Lines Matching full:node
47 bool HTMLTableRowElement::checkDTD(const Node* newChild)
55 ContainerNode* HTMLTableRowElement::addChild(PassRefPtr<Node> child)
71 Node *table = parentNode();
86 for (Node *row = head->firstChild(); row; row = row->nextSibling()) {
94 for (Node *node = table->firstChild(); node; node = node->nextSibling()) {
95 if (node->hasTagName(tbodyTag)) {
96 HTMLTableSectionElement* section = static_cast<HTMLTableSectionElement*>(node);
97 for (Node* row = section->firstChild(); row; row = row->nextSibling()) {
107 for (Node *row = foot->firstChild(); row; row = row->nextSibling()) {
122 const Node *n = this;
146 Node* n;
163 RefPtr<Node> cell = children->item(index);