You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
243 B

if (axe.commons.table.isDataTable(node)) {
var tableArray = axe.commons.table.toArray(node);
return (
tableArray.length >= 3 &&
tableArray[0].length >= 3 &&
tableArray[1].length >= 3 &&
tableArray[2].length >= 3
);
}
return false;