Bug 1207490 - Part 10: Remove use of expression closure from browser/modules/ContentLinkHandler.jsm. r=Gijs

--HG--
extra : commitid : HjblOSYSyQl
extra : rebase_source : 692d0c3392e701fcc24f6105a28e4890147b0f3f
This commit is contained in:
Tooru Fujisawa 2015-09-23 17:57:37 +09:00
Родитель a03be9066b
Коммит 82b5d4c859
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -144,7 +144,7 @@ this.ContentLinkHandler = {
/^about:blocked\?/,
/^about:certerror\?/,
/^about:home$/,
].some(function (re) re.test(targetDoc.documentURI));
].some(re => re.test(targetDoc.documentURI));
if (!isAllowedPage || !uri.schemeIs("chrome")) {
var ssm = Services.scriptSecurityManager;