Searched refs:colSpan (Results 1 - 23 of 23) sorted by relevance

/external/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLTableCellElement15.js78 The colSpan attribute specifies the number of columns spanned by a table
104 vcolspan = testNode.colSpan;
H A DHTMLTableCellElement16.js78 The colSpan attribute specifies the number of columns spanned by a
81 Retrieve the colSpan attribute of the second TD element and examine its
104 vcolspan = testNode.colSpan;
H A Dtable25.js101 vcolspan = testNode.colSpan;
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLTableCellElement15.js78 The colSpan attribute specifies the number of columns spanned by a table
104 vcolspan = testNode.colSpan;
H A DHTMLTableCellElement16.js78 The colSpan attribute specifies the number of columns spanned by a
81 Retrieve the colSpan attribute of the second TD element and examine its
104 vcolspan = testNode.colSpan;
H A Dtable25.js101 vcolspan = testNode.colSpan;
/external/webkit/Source/WebCore/html/
H A DHTMLTableCellElement.idl31 attribute long colSpan;
H A DHTMLTableCellElement.h39 int colSpan() const { return m_colSpan; } function in class:WebCore::HTMLTableCellElement
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityTableCell.cpp138 columnRange.second = renderCell->colSpan();
H A DAccessibilityTableColumn.cpp145 if ((testCell->col() + (testCell->colSpan()-1)) < m_columnIndex)
H A DAccessibilityTable.cpp494 if (cell && ((cell->col() + (cell->colSpan()-1)) >= (int)column))
/external/chromium/chrome/browser/resources/net_internals/
H A Dutil.js323 tableTitle.colSpan = numColumns;
348 tableCell.colSpan = numColumns - c;
/external/webkit/Source/WebCore/rendering/
H A DAutoTableLayout.cpp69 if (cell->colSpan() == 1) {
209 if (cell->colSpan() > 1 || cell->table()->style()->width().isAuto())
296 int span = cell->colSpan();
454 ASSERT_ARG(cell, cell && cell->colSpan() != 1);
455 if (!cell || cell->colSpan() == 1)
468 int span = cell->colSpan();
469 while (pos < m_spanCells.size() && m_spanCells[pos] && span > m_spanCells[pos]->colSpan())
H A DRenderTableCell.h40 int colSpan() const { return m_columnSpan; } function in class:WebCore::RenderTableCell
H A DFixedTableLayout.cpp160 int span = cell->colSpan();
H A DRenderTableCell.cpp80 m_columnSpan = tc->colSpan();
97 int colSpanCount = colSpan();
103 // Percentage value should be returned only for colSpan == 1.
465 bool isEndColumn = table->colToEffCol(col() + colSpan() - 1) == table->numEffCols() - 1;
497 RenderTableCol* colElt = table->colElement(col() + colSpan() - 1, &startColEdge, &endColEdge);
511 colElt = table->colElement(col() + colSpan(), &startColEdge, &endColEdge);
H A DRenderTableSection.cpp186 int cSpan = cell->colSpan();
284 int cspan = cell->colSpan();
698 cell->setLogicalLocation(table()->columnPositions()[nEffCols] - table()->columnPositions()[table()->colToEffCol(cell->col() + cell->colSpan())] + hspacing, m_rowPos[rindx]);
1141 if (current.cells[i]->rowSpan() > 1 || current.cells[i]->colSpan() > 1) {
1240 int colleft = cell->colSpan() - r[pos].inColSpan;
H A DRenderTreeAsText.cpp374 ts << " [r=" << c.row() << " c=" << c.col() << " rs=" << c.rowSpan() << " cs=" << c.colSpan() << "]";
H A DRenderTable.cpp1201 int effCol = colToEffCol(cell->col() + cell->colSpan());
/external/webkit/Source/WebCore/platform/mac/
H A DHTMLConverter.mm1007 NSInteger rowNumber = [[_textTableRows lastObject] integerValue], columnNumber = 0, rowSpan = 1, colSpan = 1;
1023 if ([tableCellElement respondsToSelector:@selector(colSpan)]) {
1024 colSpan = [(DOMHTMLTableCellElement *)tableCellElement colSpan];
1025 if (colSpan < 1) colSpan = 1;
1028 block = [[NSTextTableBlock alloc] initWithTable:table startingRow:rowNumber rowSpan:rowSpan startingColumn:columnNumber columnSpan:colSpan];
/external/jdiff/src/jdiff/
H A DHTMLReportGenerator.java1112 public void writeTableStart(String title, int colSpan) { argument
1121 reportFile.print(" <TH VALIGN=\"TOP\" COLSPAN=" + colSpan + ">");
/external/webkit/Source/WebCore/inspector/front-end/
H A DTimelinePanel.js1078 titleCell.colSpan = 2;
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h819 @property int colSpan; variable

Completed in 557 milliseconds