Bug 388438: Incorrect interpretation of LFCR after opening tag. r=mrbkap, sr=jst.

This commit is contained in:
sharparrow1%yahoo.com 2007-07-17 21:29:19 +00:00
Родитель f928efd234
Коммит ee69e990d5
1 изменённых файлов: 10 добавлений и 25 удалений

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

@ -1568,36 +1568,21 @@ CNewlineToken::Consume(PRUnichar aChar, nsScanner& aScanner, PRInt32 aFlag)
* a line feed (
), or a carriage return/line feed pair.
* All line breaks constitute white space."
*/
nsresult rv = NS_OK;
if (aChar == kCR) {
PRUnichar theChar;
nsresult result = aScanner.Peek(theChar);
if (NS_OK == result) {
switch(aChar) {
case kNewLine:
if (kCR == theChar) {
result = aScanner.GetChar(theChar);
}
break;
case kCR:
// Convert CRLF into just CR
if (kNewLine == theChar) {
result = aScanner.GetChar(theChar);
}
break;
default:
break;
}
}
if (result == kEOF && !aScanner.IsIncremental()) {
rv = aScanner.Peek(theChar);
if (theChar == kNewLine) {
rv = aScanner.GetChar(theChar);
} else if (rv == kEOF && !aScanner.IsIncremental()) {
// Make sure we don't lose information about this trailing newline.
result = NS_OK;
rv = NS_OK;
}
}
mNewlineCount = 1;
return result;
return rv;
}
CAttributeToken::CAttributeToken()