зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1472328 - Check if we're already at the end of the frame's content. r=mats
Differential Revision: https://phabricator.services.mozilla.com/D45924 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
7081cf6275
Коммит
bca3c87cf1
|
@ -7593,7 +7593,8 @@ nsresult nsTextFrame::GetCharacterRectsInRange(int32_t aInOffset,
|
|||
gfxSkipCharsIterator nextIter(iter);
|
||||
nextIter.AdvanceOriginal(1);
|
||||
if (!nextIter.IsOriginalCharSkipped() &&
|
||||
!mTextRun->IsClusterStart(nextIter.GetSkippedOffset())) {
|
||||
!mTextRun->IsClusterStart(nextIter.GetSkippedOffset()) &&
|
||||
nextIter.GetOriginalOffset() < kContentEnd) {
|
||||
FindClusterEnd(mTextRun, kContentEnd, &nextIter);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче