Home | History | Annotate | Download | only in net_internals

Lines Matching refs:row

135  * single header row.  The header row appears at the top of an HTML formatted
137 * from the table body by a partial row of dashes.
140 * the header row. In HTML tables, it uses the title class and in ascii tables
163 * Starts a new row.
170 * Adds a column to the current row, setting its value to cellText.
186 * Adds a header row, if not already present, and adds a new column to it,
192 // Insert empty new row at start of |rows_| if currently no header row.
220 var row = this.rows_[rowIndex];
221 if (columnIndex >= row.length)
223 return row[columnIndex];
240 // If header row is present, temporarily add a spacer row to |rows_|.
276 // Print each row.
299 // Remove spacer row under the header row, if one was added.
327 // Fill table body, adding header row first, if needed.
330 var row;
332 row = addNode(thead, 'tr');
335 row = addNode(tbody, 'tr');
341 var tableCell = addNode(row, cellType, cell.text);
344 // If allowing overflow on the rightmost cell of a row,