Bug 1207499 - Part 8: Remove use of expression closure from security/. r=keeler

This commit is contained in:
Tooru Fujisawa 2015-09-23 18:42:19 +09:00
parent 1b70fb4a3a
commit daf2796b2c

View File

@ -29,8 +29,12 @@ function test() {
ok(cert, "found a certificate to look at");
info("looking at certificate with nickname " + cert.nickname);
let arg = {
QueryInterface: function() this,
getISupportAtIndex: function() this.cert,
QueryInterface: function() {
return this;
},
getISupportAtIndex: function() {
return this.cert;
},
cert: cert
};
gBugWindow = window.openDialog("chrome://pippki/content/certViewer.xul",