Searched refs:tableNode (Results 1 – 4 of 4) sorted by relevance
2003 cvox.DomUtil.isLayoutTable = function(tableNode) { argument2006 if (tableNode.rows && (tableNode.rows.length <= 1 ||2007 (tableNode.rows[0].childElementCount == 1))) {2017 if (cvox.AriaUtil.isGrid(tableNode)) {2022 if (cvox.AriaUtil.isLandmark(tableNode)) {2027 if (tableNode.caption || tableNode.summary) {2032 if ((cvox.XpathUtil.evalXPath('tbody/tr/th', tableNode).length > 0) &&2033 (cvox.XpathUtil.evalXPath('tbody/tr/td', tableNode).length > 0)) {2039 if (cvox.XpathUtil.evalXPath('colgroup', tableNode).length > 0) {2044 if ((cvox.XpathUtil.evalXPath('thead', tableNode).length > 0) ||[all …]
91 cvox.TraverseTable = function(tableNode) { argument144 this.initialize(tableNode);218 cvox.TraverseTable.prototype.initialize = function(tableNode) { argument219 if (!tableNode) {222 if (tableNode == this.activeTable_) {225 this.activeTable_ = tableNode;
232 var tableNode = this.getTableNode_(sel);233 if (!tableNode) {236 var nextNode = cvox.DomUtil.directedNextLeafNode(tableNode, false);416 var tableNode = this.getTableNode_(sel);417 this.tt.initialize(tableNode);
123 Node* tableNode = table->node(); in isDataTable() local124 if (!isHTMLTableElement(tableNode)) in isDataTable()128 HTMLTableElement* tableElement = toHTMLTableElement(tableNode); in isDataTable()