Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Side by Side Diff: third_party/WebKit/LayoutTests/accessibility/th-as-title-ui.html

Issue 1417213006: Switch all LayoutTests to use new AX name calculation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix canvas-fallback-content-labels-expected.txt Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <body id="body">
7
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 -->
10
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>
17
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>
24
25 <div id="result"></div>
26
27 <script>
28 if (window.accessibilityController) {
29 var result = document.getElementById("result");
30
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() != "" && (group 2.deprecatedTitleUIElement() == null || group2.deprecatedTitleUIElement().allAtt ributes() == ""))
36 result.innerText += "Pass";
37 else
38 result.innerText += "Fail";
39 }
40 </script>
41 </body>
42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698