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

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

Issue 769783002: Modifying aria-level AX test due to changes related to aria-level for heading. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: skipping test on android Created 6 years 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
« no previous file with comments | « no previous file | content/test/data/accessibility/aria-level-expected-android.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html>
2 <!-- 1 <!--
3 @MAC-ALLOW:AXSubrole=AXOutlineRow 2 @MAC-ALLOW:AXSubrole=AXOutlineRow
4 @MAC-ALLOW:AXDisclosing* 3 @MAC-ALLOW:AXDisclosing*
5 @MAC-ALLOW:AXDisclosureLevel* 4 @MAC-ALLOW:AXDisclosureLevel*
6 @WIN-ALLOW:level:1 5 @WIN-ALLOW:level:*
7 @WIN-ALLOW:level:2
8 @WIN-ALLOW:level:3
9 @WIN-ALLOW:EXPANDED 6 @WIN-ALLOW:EXPANDED
10 @WIN-DENY:name='' 7 @WIN-DENY:name=''
11 --> 8 -->
9 <!DOCTYPE html>
12 <html> 10 <html>
13 <body> 11 <body>
14 12
15 <h3>H3</h3> 13 <h1 aria-level="2">Level 2</h1>
14 <h2 aria-level="9">Level 9</h2>
15 <h1 aria-level="20">Level 1</h1>
16 <h3>Level 3</h3>
16 17
17 <div role="heading" aria-level="3">ARIA heading level 3</div> 18 <div role="heading" aria-level="3">Level 3</div>
19 <h2 role="heading" aria-level="4">Level 4</h2>
20 <h5 role="heading">Level 5</h5>
18 21
19 <div role="tree"> 22 <div role="tree">
20 <div role="treeitem" aria-expanded="true"> 23 <div role="treeitem" aria-expanded="true">
21 Tree item at level 1 24 Tree item at level 1
22 <div role="group"> 25 <div role="group">
23 <div role="treeitem">Tree item at level 2</div> 26 <div role="treeitem">Tree item at level 2</div>
24 </div> 27 </div>
25 </div> 28 </div>
26 <div role="treeitem" aria-level="3"> 29 <div role="treeitem" aria-level="3">
27 Tree item at level 3 30 Tree item at level 3
28 </div> 31 </div>
29 </div> 32 </div>
30 33
31 <table role="treegrid"> 34 <table role="treegrid">
32 <tr role="row" aria-level="1"> 35 <tr role="row" aria-level="1">
33 <td role="gridcell">Cell at level 1</td> 36 <td role="gridcell">Cell at level 1</td>
34 </tr> 37 </tr>
35 <tr role="row" aria-level="2"> 38 <tr role="row" aria-level="2">
36 <td role="gridcell">Cell at level 2</td> 39 <td role="gridcell">Cell at level 2</td>
37 </tr> 40 </tr>
38 </table> 41 </table>
39 42
40 </body> 43 </body>
41 </html> 44 </html>
OLDNEW
« no previous file with comments | « no previous file | content/test/data/accessibility/aria-level-expected-android.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698