Bug 624191 - Missing <td> in the graphics section of about:support. r+a=gavin

--HG--
extra : rebase_source : 712cd6fab69ea6a00be049adaeb48678bc6bfc4b
This commit is contained in:
Siddharth Agarwal 2011-01-11 16:28:10 +05:30
parent 4c3a047055
commit e8050180b9

View File

@ -274,9 +274,12 @@ function populateGraphicsSection() {
if (acceleratedWindows)
msg += " " + mgrType;
let header = createHeader(bundle.GetStringFromName("acceleratedWindows"));
appendChildren(graphics_tbody, [ header, createElement("td", msg) ]);
appendChildren(graphics_tbody, [
createParentElement("tr", [
createHeader(bundle.GetStringFromName("acceleratedWindows")),
createElement("td", msg),
])
]);
}
function getPrefValue(aName) {