finally landing residual style handling code; r=harishd; other changes include warning removal and comment handling fix, r=buster. This fixes over 50 bugs.
git-svn-id: svn://10.0.0.236/trunk@55489 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -359,8 +359,9 @@ nsresult nsHTMLTokenizer::ConsumeTag(PRUnichar aChar,CToken*& aToken,nsScanner&
|
||||
PRUnichar theNextChar;
|
||||
result=aScanner.Peek(theNextChar);
|
||||
if(NS_OK==result) {
|
||||
if(theNextChar==kMinus)
|
||||
if((kMinus==theNextChar) || (kGreaterThan==theNextChar)) {
|
||||
result=ConsumeComment(aChar,aToken,aScanner);
|
||||
}
|
||||
else
|
||||
result=ConsumeSpecialMarkup(aChar,aToken,aScanner);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user