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:
Jonathan Kew 2019-09-16 19:07:00 +00:00
Родитель 7081cf6275
Коммит bca3c87cf1
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -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);
}