Bug 1734590 - Eliminate use of LineBreaker::DeprecatedNext in nsXMLContentSerializer.cpp. r=TYLin

The behavior change of Next() vs DeprecatedNext() here is OK, because if DeprecatedNext()
failed to find a break position then we'd end up reaching the "simple fallback logic"
below, which will just advance to the next space or end-of-text anyhow.

The only case, then, where this results in a change of behavior would be if there's a
space that the line-breaker does *not* consider a valid break, so that instead it
advances to end-of-text, where previously we'd have reached the fallback code and
used the (invalid) space as a break. So (a) this is a really obscure edge-case, and
(b) the new behavior would be more correct anyhow.

Differential Revision: https://phabricator.services.mozilla.com/D127805
This commit is contained in:
Jonathan Kew 2021-10-11 12:20:41 +00:00
Родитель 8f218bf44c
Коммит 16d134b89d
1 изменённых файлов: 17 добавлений и 4 удалений

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

@ -1545,10 +1545,15 @@ bool nsXMLContentSerializer::AppendWrapped_NonWhitespaceSequence(
if (wrapPosition != NS_LINEBREAKER_NEED_MORE_TEXT) {
foundWrapPosition = true;
} else {
wrapPosition = lineBreaker->DeprecatedNext(aSequenceStart,
wrapPosition = lineBreaker->Next(aSequenceStart,
(aEnd - aSequenceStart),
(aPos - aSequenceStart));
if (wrapPosition != NS_LINEBREAKER_NEED_MORE_TEXT) {
MOZ_ASSERT(wrapPosition != NS_LINEBREAKER_NEED_MORE_TEXT,
"Next() always treats end-of-text as a break");
// If the line-breaker returned end-of-text, we don't know that it
// is actually a good wrap position, so ignore it and continue to
// use the fallback code below.
if (wrapPosition < aEnd - aSequenceStart) {
foundWrapPosition = true;
}
}
@ -1574,6 +1579,14 @@ bool nsXMLContentSerializer::AppendWrapped_NonWhitespaceSequence(
// go forward up to the next whitespace position,
// in the worst case this will be all the rest of the data
// XXX(jfkthame) Should we (conditionally) output indentation here?
// It makes for tidier-looking formatted output, at the cost of
// exceeding the target width by a greater amount on such lines.
// if (!mColPos && mDoFormat) {
// NS_ENSURE_TRUE(AppendIndentation(aOutputStr), false);
// mAddSpace = false;
// }
// we update the mColPos variable with the length of
// the part already parsed.
mColPos += length;