This commit is contained in:
jst%mozilla.jstenback.com 2003-11-13 04:15:25 +00:00
Родитель ef27d8e3db
Коммит dc9e270b8d
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -436,6 +436,7 @@ nsScriptLoader::ProcessScriptElement(nsIDOMHTMLScriptElement *aElement,
NS_ASSERTION(content, "nsIDOMHTMLScriptElement not implementing nsIContent");
content->GetBaseURL(getter_AddRefs(baseURI));
rv = NS_NewURI(getter_AddRefs(scriptURI), src, nsnull, baseURI);
if (NS_FAILED(rv)) {
return FireErrorNotification(rv, aElement, aObserver);
}
@ -460,7 +461,8 @@ nsScriptLoader::ProcessScriptElement(nsIDOMHTMLScriptElement *aElement,
rv = NS_CheckContentLoadPolicy(nsIContentPolicy::SCRIPT,
scriptURI, aElement, domWin, &shouldLoad);
if (NS_SUCCEEDED(rv) && !shouldLoad) {
return FireErrorNotification(NS_ERROR_NOT_AVAILABLE, aElement, aObserver);
return FireErrorNotification(NS_ERROR_NOT_AVAILABLE, aElement,
aObserver);
}
request->mURI = scriptURI;