Searched refs:tableNode (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Ddom_util.js1999 * @param {Node} tableNode The table node.
2003 cvox.DomUtil.isLayoutTable = function(tableNode) {
2006 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)
[all...]
H A Dtraverse_table.js89 * @param {Node} tableNode The table to be traversed.
91 cvox.TraverseTable = function(tableNode) {
144 this.initialize(tableNode);
216 * @param {Node} tableNode The table to be traversed.
218 cvox.TraverseTable.prototype.initialize = function(tableNode) {
219 if (!tableNode) {
222 if (tableNode == this.activeTable_) {
225 this.activeTable_ = tableNode;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
H A Dtable_walker.js232 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);
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTable.cpp123 Node* tableNode = table->node(); local
124 if (!isHTMLTableElement(tableNode))
128 HTMLTableElement* tableElement = toHTMLTableElement(tableNode);

Completed in 416 milliseconds