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

This commit is contained in:
harishd%netscape.com 2001-10-22 20:51:09 +00:00
parent 57f031a91e
commit 90a960756e
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);
}
/**