diff --git a/toolkit/content/aboutSupport.js b/toolkit/content/aboutSupport.js index 7215a852c204..2efffed0334d 100644 --- a/toolkit/content/aboutSupport.js +++ b/toolkit/content/aboutSupport.js @@ -183,6 +183,18 @@ var snapshotFormatters = { })); }, + securitySoftware: function securitySoftware(data) { + if (!AppConstants.isPlatformAndVersionAtLeast("win", "6.2")) { + $("security-software-title").hidden = true; + $("security-software-table").hidden = true; + return; + } + + $("security-software-antivirus").textContent = data.registeredAntiVirus; + $("security-software-antispyware").textContent = data.registeredAntiSpyware; + $("security-software-firewall").textContent = data.registeredFirewall; + }, + features: function features(data) { $.append($("features-tbody"), data.map(function(feature) { return $.new("tr", [ diff --git a/toolkit/content/aboutSupport.xhtml b/toolkit/content/aboutSupport.xhtml index 8fa80981381b..fe34d74a9ab8 100644 --- a/toolkit/content/aboutSupport.xhtml +++ b/toolkit/content/aboutSupport.xhtml @@ -370,6 +370,53 @@ +
+ &aboutSupport.securitySoftwareType; + | ++ &aboutSupport.securitySoftwareName; + | +
---|---|
+ &aboutSupport.securitySoftwareAntivirus; + | + ++ | +
+ &aboutSupport.securitySoftwareAntiSpyware; + | + ++ | +
+ &aboutSupport.securitySoftwareFirewall; + | + ++ | +