Bug 1623764 - Part 2: Add mSawInlineCharacter to PeekWordState r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D85921
This commit is contained in:
Kagami Sascha Rosylight 2020-08-09 12:58:05 +00:00
Родитель dfdf849335
Коммит 00633d6b49
2 изменённых файлов: 29 добавлений и 7 удалений

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

@ -5170,6 +5170,8 @@ class nsIFrame : public nsQueryFrame {
// non-whitespace and whitespace), then mSawBeforeType==true means "we
// already saw some non-whitespace".
bool mSawBeforeType;
// true when we've encountered at least one non-newline character
bool mSawInlineCharacter;
// true when the last character encountered was punctuation
bool mLastCharWasPunctuation;
// true when the last character encountered was whitespace
@ -5184,10 +5186,12 @@ class nsIFrame : public nsQueryFrame {
PeekWordState()
: mAtStart(true),
mSawBeforeType(false),
mSawInlineCharacter(false),
mLastCharWasPunctuation(false),
mLastCharWasWhitespace(false),
mSeenNonPunctuationSinceWhitespace(false) {}
void SetSawBeforeType() { mSawBeforeType = true; }
void SetSawInlineCharacter() { mSawInlineCharacter = true; }
void Update(bool aAfterPunctuation, bool aAfterWhitespace) {
mLastCharWasPunctuation = aAfterPunctuation;
mLastCharWasWhitespace = aAfterWhitespace;

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

@ -820,12 +820,20 @@ static bool IsTrimmableSpace(const nsTextFragment* aFrag, uint32_t aPos,
}
}
static bool IsSelectionSpace(const nsTextFragment* aFrag, uint32_t aPos) {
NS_ASSERTION(aPos < aFrag->GetLength(), "No text for IsSpace!");
static bool IsSelectionInlineWhitespace(const nsTextFragment* aFrag,
uint32_t aPos) {
NS_ASSERTION(aPos < aFrag->GetLength(),
"No text for IsSelectionInlineWhitespace!");
char16_t ch = aFrag->CharAt(aPos);
if (ch == ' ' || ch == CH_NBSP)
return !IsSpaceCombiningSequenceTail(aFrag, aPos + 1);
return ch == '\t' || ch == '\n' || ch == '\f' || ch == '\r';
return ch == '\t' || ch == '\f';
}
static bool IsSelectionNewline(const nsTextFragment* aFrag, uint32_t aPos) {
NS_ASSERTION(aPos < aFrag->GetLength(), "No text for IsSelectionNewline!");
char16_t ch = aFrag->CharAt(aPos);
return ch == '\n' || ch == '\r';
}
// Count the amount of trimmable whitespace (as per CSS
@ -7705,7 +7713,8 @@ class MOZ_STACK_CLASS ClusterIterator {
bool aTrimSpaces = true);
bool NextCluster();
bool IsWhitespace() const;
bool IsInlineWhitespace() const;
bool IsNewline() const;
bool IsPunctuation() const;
bool HaveWordBreakBefore() const { return mHaveWordBreak; }
@ -7850,9 +7859,14 @@ nsIFrame::FrameSearchResult nsTextFrame::PeekOffsetCharacter(
return CONTINUE;
}
bool ClusterIterator::IsWhitespace() const {
bool ClusterIterator::IsInlineWhitespace() const {
NS_ASSERTION(mCharIndex >= 0, "No cluster selected");
return IsSelectionSpace(mFrag, mCharIndex);
return IsSelectionInlineWhitespace(mFrag, mCharIndex);
}
bool ClusterIterator::IsNewline() const {
NS_ASSERTION(mCharIndex >= 0, "No cluster selected");
return IsSelectionNewline(mFrag, mCharIndex);
}
bool ClusterIterator::IsPunctuation() const {
@ -8035,8 +8049,12 @@ nsIFrame::FrameSearchResult nsTextFrame::PeekOffsetWord(
do {
bool isPunctuation = cIter.IsPunctuation();
bool isWhitespace = cIter.IsWhitespace();
bool isInlineWhitespace = cIter.IsInlineWhitespace();
bool isWhitespace = isInlineWhitespace || cIter.IsNewline();
bool isWordBreakBefore = cIter.HaveWordBreakBefore();
if (!isWhitespace || isInlineWhitespace) {
aState->SetSawInlineCharacter();
}
if (aWordSelectEatSpace == isWhitespace && !aState->mSawBeforeType) {
aState->SetSawBeforeType();
aState->Update(isPunctuation, isWhitespace);