diff --git a/toolkit/content/aboutSupport.js b/toolkit/content/aboutSupport.js index 64613d6ee3e..85b465c8332 100644 --- a/toolkit/content/aboutSupport.js +++ b/toolkit/content/aboutSupport.js @@ -257,6 +257,16 @@ function populateGraphicsSection() { ])); appendChildren(graphics_tbody, trGraphics); + + // display any failures that have occurred + let graphics_failures_tbody = document.getElementById("graphics-failures-tbody"); + let trGraphicsFailures = gfxInfo.getFailures().map(function (value) + createParentElement("tr", [ + createElement("td", value) + ]) + ); + appendChildren(graphics_failures_tbody, trGraphicsFailures); + } // end if (gfxInfo) let windows = Services.ww.getWindowEnumerator(); diff --git a/toolkit/content/aboutSupport.xhtml b/toolkit/content/aboutSupport.xhtml index ebe6f4623a7..f54d677024d 100644 --- a/toolkit/content/aboutSupport.xhtml +++ b/toolkit/content/aboutSupport.xhtml @@ -203,6 +203,11 @@
+ +