Home | History | Annotate | Download | only in dom

Lines Matching defs:equivalent

403 // 1. It is the first position in the node and the next visually equivalent position
405 // 2. It is the last position in the node and the previous visually equivalent position
407 // 3. It is an editable position and both the next and previous visually equivalent
552 // This function and downstream() are used for moving back and forth between visually equivalent candidates.
674 // This function and upstream() are used for moving back and forth between visually equivalent candidates.
1138 // Try a visually equivalent position with possibly opposite editability. This helps in case |this| is in
1141 Position equivalent = downstreamIgnoringEditingBoundaries(*this);
1142 if (equivalent == *this) {
1143 equivalent = upstreamIgnoringEditingBoundaries(*this);
1144 if (equivalent == *this || downstreamIgnoringEditingBoundaries(equivalent) == *this)
1148 equivalent.getInlineBoxAndOffset(UPSTREAM, primaryDirection, inlineBox, caretOffset);