зеркало из https://github.com/mozilla/pjs.git
Bug #359852 --> during composition, local file image urls aren't loaded in the compose window. sr=bienvenu
This commit is contained in:
Родитель
b145e9b6f6
Коммит
c0330c37ac
|
@ -286,13 +286,15 @@ nsMsgContentPolicy::ShouldLoad(PRUint32 aContentType,
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
// never load unexposed protocols except for http and https.
|
||||
// never load unexposed protocols except for http, https and file.
|
||||
// Protocols like ftp, gopher are always blocked.
|
||||
PRBool isHttp;
|
||||
PRBool isHttps;
|
||||
PRBool isFile;
|
||||
rv = aContentLocation->SchemeIs("http", &isHttp);
|
||||
rv |= aContentLocation->SchemeIs("https", &isHttps);
|
||||
if (NS_FAILED(rv) || (!isHttp && !isHttps))
|
||||
rv |= aContentLocation->SchemeIs("file", &isFile);
|
||||
if (NS_FAILED(rv) || (!isHttp && !isHttps && !isFile))
|
||||
return NS_OK;
|
||||
|
||||
// If we are allowing all remote content...
|
||||
|
|
Загрузка…
Ссылка в новой задаче