Home
last modified time | relevance | path

Searched refs:boundaryOffset (Results 1 – 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/dom/
DRange.cpp1798 unsigned boundaryOffset = boundary.offset(); in boundaryTextInserted() local
1799 if (offset >= boundaryOffset) in boundaryTextInserted()
1801 boundary.setOffset(boundaryOffset + length); in boundaryTextInserted()
1816 unsigned boundaryOffset = boundary.offset(); in boundaryTextRemoved() local
1817 if (offset >= boundaryOffset) in boundaryTextRemoved()
1819 if (offset + length >= boundaryOffset) in boundaryTextRemoved()
1822 boundary.setOffset(boundaryOffset - length); in boundaryTextRemoved()
1857 unsigned boundaryOffset = boundary.offset(); in boundaryTextNodesSplit() local
1858 if (boundaryOffset <= oldNode->length()) in boundaryTextNodesSplit()
1860 boundary.set(oldNode->nextSibling(), boundaryOffset - oldNode->length(), 0); in boundaryTextNodesSplit()