Lines Matching refs:newCell
63 const moveContent = (oldCell, newCell) => {
66 newCell.innerText = oldCell.innerText
72 newCell.appendChild(oldCell.firstChild)
85 const newCell = cell.cloneNode(false)
87 newCell.colSpan = 2
90 if (moveContent(cell, newCell)) {
91 cellMap.set(cell, newCell)
93 tr.appendChild(newCell)
95 return newCell
99 const newCell = document.createElement("th")
100 newCell.colSpan = 2
102 newCell.className = cell.className
104 if (moveContent(cell, newCell)) {
105 cellMap.set(cell, newCell)
107 tr.appendChild(newCell)
192 … const newCell = addCell(tr, row.children[i - colOffset], name === hiddenHeading)
193 newCell.rowSpan = colSpan