From a52a78014b62524eb5ffab6d1436683d6a30583e Mon Sep 17 00:00:00 2001 From: Blake Kaplan Date: Mon, 6 Oct 2008 15:19:28 -0700 Subject: [PATCH] Temporarily disable speculative parsing to see its effect on tinderbox crashiness. r+sr=jst --- parser/htmlparser/src/nsParser.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/parser/htmlparser/src/nsParser.cpp b/parser/htmlparser/src/nsParser.cpp index 060e5beac924..85ebb4655873 100644 --- a/parser/htmlparser/src/nsParser.cpp +++ b/parser/htmlparser/src/nsParser.cpp @@ -1538,6 +1538,7 @@ nsParser::DidBuildModel(nsresult anErrorCode) void nsParser::SpeculativelyParse() { +#if 0 // Disable temporarily to see if this is the cause of the bustage. if (mParserContext->mParserCommand == eViewNormal && !mParserContext->mMimeType.EqualsLiteral("text/html")) { return; @@ -1554,6 +1555,7 @@ nsParser::SpeculativelyParse() if (NS_FAILED(rv)) { mSpeculativeScriptThread = nsnull; } +#endif } /**