4 testRunner
.dumpAsText();
8 <!-- This test makes sure that tables that are not exposed as tables do not have title ui elements incorrectly set -->
11 <tbody><tr><td colspan=
"6"><h2>ATS
</h2></td></tr>
23 <div id=
"result"></div>
27 if (window
.accessibilityController
) {
28 var result
= document
.getElementById("result");
30 var pass
= document
.getElementById("body");
32 // get the <th>skip</th> element
33 var group
= accessibilityController
.focusedElement
.childAtIndex(5);
34 var titleUI
= group
.deprecatedTitleUIElement();
35 var allAttributes
= "";
37 allAttributes
= titleUI
.allAttributes();
39 // verify it has no title ui element
41 result
.innerText
+= "Test passed\n";
44 result
.innerText
+= "Test failed\n";