Home | History | Annotate | Download | only in editing

Lines Matching defs:row

58 static bool isTableRowEmpty(Node* row)
60 if (!isTableRow(row))
63 for (Node* child = row->firstChild(); child; child = child->nextSibling())
671 Node* row
672 while (row && row != m_startTableRow) {
673 RefPtr<Node> previousRow = row->previousSibling();
674 if (isTableRowEmpty(row))
677 CompositeEditCommand::removeNode(row);
678 row = previousRow.get();
682 // Remove empty rows after the start row.
684 Node* row = m_startTableRow->nextSibling();
685 while (row && row != m_endTableRow) {
686 RefPtr<Node> nextRow = row->nextSibling();
687 if (isTableRowEmpty(row))
688 CompositeEditCommand::removeNode(row);
689 row = nextRow.get();