bug 249508 disable loads when persisting the src of an <input type="image">

r+sr=bz
This commit is contained in:
cbiesinger%web.de 2006-02-19 17:39:13 +00:00
Родитель 93560d613c
Коммит 75690f0264
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -3227,6 +3227,12 @@ nsWebBrowserPersist::CloneNodeWithFixedUpURIAttributes(
rv = GetNodeToFixup(aNodeIn, aNodeOut);
if (NS_SUCCEEDED(rv) && *aNodeOut)
{
// Disable image loads
nsCOMPtr<nsIImageLoadingContent> imgCon =
do_QueryInterface(*aNodeOut);
if (imgCon)
imgCon->SetLoadingEnabled(PR_FALSE);
FixupNodeAttribute(*aNodeOut, "src");
}
return rv;