Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / accessibility / th-as-title-ui.html
blob124101e72a902446bfabbf1623595fd0d9a7ffdb
1 <html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <body id="body">
8 <!-- the AXGroup that comes from the <td> should have the <th> as its title ui element
9 In the 2nd case, it should not have a title ui element -->
11 <table width="90" border="0">
12 <tr>
13 <th>Header for button</th>
14 <td><input type="button" value="button"></td>
15 </tr>
16 </table>
18 <table width="90" border="0">
19 <tr>
20 <td>Header for button</td>
21 <td><input type="button" value="button"></td>
22 </tr>
23 </table>
25 <div id="result"></div>
27 <script>
28 if (window.accessibilityController) {
29 var result = document.getElementById("result");
31 var body = document.getElementById("body");
32 body.focus();
33 var group = accessibilityController.focusedElement.childAtIndex(1);
34 var group2 = accessibilityController.focusedElement.childAtIndex(3);
35 if (group.deprecatedTitleUIElement().allAttributes() != "" && (group2.deprecatedTitleUIElement() == null || group2.deprecatedTitleUIElement().allAttributes() == ""))
36 result.innerText += "Pass";
37 else
38 result.innerText += "Fail";
40 </script>
41 </body>
42 </html>