MozReview-Commit-ID: JH5QUu357gc

--HG--
extra : rebase_source : 3394613dbaf1b49bf9dc16086d0bd0ae870d89b9
This commit is contained in:
Gijs Kruitbosch 2016-06-07 14:47:35 +01:00
Родитель ca7fb511f8
Коммит 0fccc460b7
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -491,7 +491,9 @@ GenericProtocolHandler.prototype = {
},
get protocolFlags() {
return this._http.protocolFlags;
let {URI_DANGEROUS_TO_LOAD, ALLOWS_PROXY_HTTP, ALLOWS_PROXY} =
Ci.nsIProtocolHandler;
return URI_DANGEROUS_TO_LOAD | ALLOWS_PROXY | ALLOWS_PROXY_HTTP;
},
get defaultPort() {