Backing out fix for bug 100397 since it caused the relow numbers and the page load time to shoot up.

git-svn-id: svn://10.0.0.236/trunk@105959 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
harishd%netscape.com 2001-10-22 20:51:09 +00:00
parent 47020cc834
commit 7423f3c016
2 changed files with 2 additions and 8 deletions

View File

@ -460,10 +460,7 @@ nsresult nsHTMLTokenizer::ScanDocStructure(PRBool aFinalChunk) {
}
nsresult nsHTMLTokenizer::DidTokenize(PRBool aFinalChunk) {
// Bug 100397
// In quirks mode we want residual style, in NavDTD, to kick
// in regardless of whether the document is wellformed or not.
return (mFlags & NS_IPARSER_FLAG_STRICT_MODE)? ScanDocStructure(aFinalChunk):NS_OK;
return ScanDocStructure(aFinalChunk);
}
/**

View File

@ -460,10 +460,7 @@ nsresult nsHTMLTokenizer::ScanDocStructure(PRBool aFinalChunk) {
}
nsresult nsHTMLTokenizer::DidTokenize(PRBool aFinalChunk) {
// Bug 100397
// In quirks mode we want residual style, in NavDTD, to kick
// in regardless of whether the document is wellformed or not.
return (mFlags & NS_IPARSER_FLAG_STRICT_MODE)? ScanDocStructure(aFinalChunk):NS_OK;
return ScanDocStructure(aFinalChunk);
}
/**