From 2fd7c0bdc64e9df7fd46e2b482b72480ef9ee585 Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Wed, 6 Mar 2013 11:27:10 -0800 Subject: [PATCH] Bug 848031; r=gavin --HG-- extra : rebase_source : 0ffb1e5904f3234d908c6441c13163b47b2ae3e7 --- browser/base/content/abouthealthreport/abouthealth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/base/content/abouthealthreport/abouthealth.js b/browser/base/content/abouthealthreport/abouthealth.js index 21af4c5a2623..637d6c6cc221 100644 --- a/browser/base/content/abouthealthreport/abouthealth.js +++ b/browser/base/content/abouthealthreport/abouthealth.js @@ -60,7 +60,7 @@ function refreshDataView(data) { noData.style.display = data ? "none" : "inline"; dataEl.style.display = data ? "block" : "none"; if (data) { - dataEl.innerHTML = JSON.stringify(data, null, 2); + dataEl.textContent = JSON.stringify(data, null, 2); } }