зеркало из https://github.com/mozilla/pjs.git
bug 249508 disable loads when persisting the src of an <input type="image">
r+sr=bz
This commit is contained in:
Родитель
93560d613c
Коммит
75690f0264
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче