Backed out changeset 9dc97d73b64f in favor of using a revised patch.

--HG--
extra : rebase_source : 6f35fc24e484beed9f117a5d262532bb66aed786
This commit is contained in:
Ryan VanderMeulen 2015-06-19 10:19:11 -04:00
Родитель a22ad9d47a
Коммит b56e92700c
1 изменённых файлов: 2 добавлений и 4 удалений

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

@ -1287,9 +1287,7 @@ nsContextMenu.prototype = {
}
}
// setting up a new channel for 'right click - save link as ...'
// which should be treated the same way as a toplevel load, hence
// we use TYPE_DOCUMENT, see also bug: 1136055
// set up a channel to do the saving
var ioService = Cc["@mozilla.org/network/io-service;1"].
getService(Ci.nsIIOService);
var channel = ioService.newChannelFromURI2(makeURI(linkURL),
@ -1297,7 +1295,7 @@ nsContextMenu.prototype = {
this.principal, // aLoadingPrincipal
null, // aTriggeringPrincipal
Ci.nsILoadInfo.SEC_NORMAL,
Ci.nsIContentPolicy.TYPE_DOCUMENT);
Ci.nsIContentPolicy.TYPE_OTHER);
if (linkDownload)
channel.contentDispositionFilename = linkDownload;
if (channel instanceof Ci.nsIPrivateBrowsingChannel) {