mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1166436 part.18 ContentCache should guess caret rect if there is a text rect cache of the previous character r=m_kato
This commit is contained in:
parent
fc34acd5c0
commit
13c0dd5548
@ -685,7 +685,7 @@ ContentCache::GetTextRect(uint32_t aOffset,
|
||||
return !aTextRect.IsEmpty();
|
||||
}
|
||||
|
||||
if (NS_WARN_IF(!mTextRectArray.InRange(aOffset))) {
|
||||
if (!mTextRectArray.InRange(aOffset)) {
|
||||
aTextRect.SetEmpty();
|
||||
return false;
|
||||
}
|
||||
@ -719,7 +719,7 @@ ContentCache::GetUnionTextRects(uint32_t aOffset,
|
||||
}
|
||||
}
|
||||
|
||||
if (NS_WARN_IF(!mTextRectArray.InRange(aOffset, aLength))) {
|
||||
if (!mTextRectArray.InRange(aOffset, aLength)) {
|
||||
aUnionTextRect.SetEmpty();
|
||||
return false;
|
||||
}
|
||||
@ -751,8 +751,19 @@ ContentCache::GetCaretRect(uint32_t aOffset,
|
||||
|
||||
// Guess caret rect from the text rect if it's stored.
|
||||
if (!GetTextRect(aOffset, aCaretRect)) {
|
||||
aCaretRect.SetEmpty();
|
||||
return false;
|
||||
// There might be previous character rect in the cache. If so, we can
|
||||
// guess the caret rect with it.
|
||||
if (!aOffset || !GetTextRect(aOffset - 1, aCaretRect)) {
|
||||
aCaretRect.SetEmpty();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (mSelection.mWritingMode.IsVertical()) {
|
||||
aCaretRect.y = aCaretRect.YMost();
|
||||
} else {
|
||||
// XXX bidi-unaware.
|
||||
aCaretRect.x = aCaretRect.XMost();
|
||||
}
|
||||
}
|
||||
|
||||
// XXX This is not bidi aware because we don't cache each character's
|
||||
|
Loading…
Reference in New Issue
Block a user