Bug 572957 - about:memory is missing TD elements around ABBR elements. r=vlad

This commit is contained in:
Jesse Ruderman 2010-06-18 12:14:39 -07:00
Родитель 83ced29328
Коммит aedd5004d2
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -42,10 +42,11 @@ function $(n) {
return document.getElementById(n);
}
function makeTableCell(s, c) {
function makeTableCell(content, c) {
var td = document.createElement("td");
var text = document.createTextNode(s);
td.appendChild(text);
if (typeof content == "string")
content = document.createTextNode(content);
td.appendChild(content);
if (c)
td.setAttribute("class", c);
@ -69,7 +70,7 @@ function makeTableRow() {
if (typeof(arg) == "string") {
row.appendChild(makeTableCell(arg));
} else if (arg.__proto__ == Array.prototype) {
row.appendChild(makeAbbrNode(arg[0], arg[1]));
row.appendChild(makeTableCell(makeAbbrNode(arg[0], arg[1])));
} else {
row.appendChild(arg);
}