| <!-- This test makes sure that tables that are not exposed as tables do not have title ui elements incorrectly set --> |
| <tbody><tr><td colspan="6"><h2>ATS</h2></td></tr> |
| if (window.accessibilityController) { |
| var result = document.getElementById("result"); |
| var pass = document.getElementById("body"); |
| // get the <th>skip</th> element |
| var group = accessibilityController.accessibleElementById("skip"); |
| var titleUI = group.titleUIElement(); |
| allAttributes = titleUI.allAttributes(); |
| // verify it has no title ui element |
| result.innerText += "Test passed\n"; |
| result.innerText += "Test failed\n"; |