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

Side by Side Diff: content/test/data/accessibility/aria-level.html

Issue 13479003: Modify AccessibilityTreeFormatter to build up an internal representation of the tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 years, 8 months 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
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 @MAC-ALLOW:subrole=AXOutlineRow 3 @MAC-ALLOW:AXSubrole=AXOutlineRow
4 @MAC-ALLOW:disclosing* 4 @MAC-ALLOW:AXDisclosing*
5 @MAC-ALLOW:disclosureLevel* 5 @MAC-ALLOW:AXDisclosureLevel*
6 @WIN-ALLOW:level:1 6 @WIN-ALLOW:level:1
7 @WIN-ALLOW:level:2 7 @WIN-ALLOW:level:2
8 @WIN-ALLOW:level:3 8 @WIN-ALLOW:level:3
9 @WIN-ALLOW:EXPANDED 9 @WIN-ALLOW:EXPANDED
10 @WIN-DENY:name='' 10 @WIN-DENY:name=''
11 --> 11 -->
12 <html> 12 <html>
13 <body> 13 <body>
14 14
15 <h3>H3</h3> 15 <h3>H3</h3>
(...skipping 16 matching lines...) Expand all
32 <tr role="row" aria-level="1"> 32 <tr role="row" aria-level="1">
33 <td role="gridcell">Cell at level 1</td> 33 <td role="gridcell">Cell at level 1</td>
34 </tr> 34 </tr>
35 <tr role="row" aria-level="2"> 35 <tr role="row" aria-level="2">
36 <td role="gridcell">Cell at level 2</td> 36 <td role="gridcell">Cell at level 2</td>
37 </tr> 37 </tr>
38 </table> 38 </table>
39 39
40 </body> 40 </body>
41 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698