Bug 1055728 - Only issue "can't retarget to off-main thread" warning on parent. r=hsivonen
This commit is contained in:
@@ -944,7 +944,11 @@ nsHtml5StreamParser::OnStartRequest(nsIRequest* aRequest, nsISupports* aContext)
|
||||
}
|
||||
|
||||
if (NS_FAILED(rv)) {
|
||||
NS_WARNING("Failed to retarget HTML data delivery to the parser thread.");
|
||||
// for now skip warning if we're on child process, since we don't support
|
||||
// off-main thread delivery there yet. This will change with bug 1015466
|
||||
if (XRE_GetProcessType() != GeckoProcessType_Content) {
|
||||
NS_WARNING("Failed to retarget HTML data delivery to the parser thread.");
|
||||
}
|
||||
}
|
||||
|
||||
if (mCharsetSource == kCharsetFromParentFrame) {
|
||||
|
||||
Reference in New Issue
Block a user