Lines Matching refs:tableNode

1999  * @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).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) ||
2045 (cvox.XpathUtil.evalXPath('tfoot', tableNode).length > 0)) {
2050 if ((cvox.XpathUtil.evalXPath('tbody/tr/td/embed', tableNode).length > 0) ||
2051 (cvox.XpathUtil.evalXPath('tbody/tr/td/object', tableNode).length > 0) ||
2052 (cvox.XpathUtil.evalXPath('tbody/tr/td/iframe', tableNode).length > 0) ||
2053 (cvox.XpathUtil.evalXPath('tbody/tr/td/applet', tableNode).length > 0)) {
2067 if (! cvox.DomUtil.hasBorder(tableNode)) {
2072 if (tableNode.rows.length <= 6) {
2077 if (cvox.DomUtil.countPreviousTags(tableNode) <= 12) {
2082 if (cvox.XpathUtil.evalXPath('tbody/tr/td/table', tableNode).length > 0) {
2122 * @param {Node} tableNode The table node.
2125 cvox.DomUtil.hasBorder = function(tableNode) {
2127 if (tableNode.frame) {
2128 return (tableNode.frame.indexOf('void') == -1);
2132 if (tableNode.border) {
2133 if (tableNode.border.length == 1) {
2134 return (tableNode.border != '0');
2136 return (tableNode.border.slice(0, -2) != 0);
2141 if (tableNode.style.borderStyle && tableNode.style.borderStyle == 'none') {
2148 if (tableNode.style.borderWidth) {
2149 return (tableNode.style.borderWidth.slice(0, -2) != 0);
2153 if (tableNode.style.borderColor) {