Home | History | Annotate | Download | only in editing

Lines Matching refs:enclosingNodeOfType

187     m_startTableRow = enclosingNodeOfType(start, &isTableRow);
188 m_endTableRow = enclosingNodeOfType(end, &isTableRow);
191 // If the cell is non-editable, enclosingNodeOfType won't return it by default, so
193 Node* startCell = enclosingNodeOfType(m_upstreamStart, &isTableCell, CanCrossEditingBoundary);
194 Node* endCell = enclosingNodeOfType(m_downstreamEnd, &isTableCell, CanCrossEditingBoundary);
265 // FIXME: Passing false to enclosingNodeOfType tells it that it's OK to return a non-editable
267 m_startBlock = enclosingNodeOfType(m_downstreamStart.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
268 m_endBlock = enclosingNodeOfType(m_upstreamEnd.parentAnchoredEquivalent(), &isBlock, CanCrossEditingBoundary);
289 if (enclosingNodeOfType(m_selectionToDelete.start(), isMailBlockquote))
704 if (m_deleteIntoBlockquoteStyle && !enclosingNodeOfType(m_endingPosition, isMailBlockquote, CanCrossEditingBoundary))