Fix for bug # 5276. Flush the buffers after the "Page loaded sucessfully"

message
This commit is contained in:
radha%netscape.com 1999-04-21 00:15:32 +00:00
parent e863238bf0
commit dd5f06e626

View File

@ -742,7 +742,9 @@ nsBrowserAppCore::OnEndDocumentLoad(nsIURL *aUrl, PRInt32 aStatus)
rv = mContentAreaWebShell->CanBack();
setAttribute(mWebShell, "canGoBack", "disabled", (rv == NS_OK) ? "" : "true");
printf("Document %s loaded successfully\n", spec);
/* To satisfy a request from the QA group */
fprintf(stdout, "Document %s loaded successfully\n", spec);
fflush(stdout);
return NS_OK;
}