Bug 1152331 - If we do not delete indices array, it gets picked up down the line and breaks some assumptions in aboutSupport.js. r=dvander, a=sledru
--- a/toolkit/content/aboutSupport.js
+++ b/toolkit/content/aboutSupport.js
@@ -251,25 +251,26 @@ let snapshotFormatters = {
if (a.index < b.index) return -1;
if (a.index > b.index) return 1;
return 0;});
$.append($("graphics-failures-tbody"),
combined.map(function(val) {
return $.new("tr", [$.new("th", val.header, "column"),
$.new("td", val.message)]);
}));
+ delete data.indices;
} else {
$.append($("graphics-failures-tbody"),
[$.new("tr", [$.new("th", "LogFailure", "column"),
$.new("td", data.failures.map(function (val) {
return $.new("p", val);
}))])]);
}
- delete data.failures;
+ delete data.failures;
}
// graphics-tbody tbody
let out = Object.create(data);
if (apzInfo.length == 0)
out.asyncPanZoom = "none";