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

Side by Side Diff: content/test/data/accessibility/html/landmark.html

Issue 2649953004: Updated descendant condition for header/footer AX role mapping. (Closed)
Patch Set: addressed review comment Created 3 years, 10 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
« no previous file with comments | « no previous file | content/test/data/accessibility/html/landmark-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 <!-- 1 <!--
2 @MAC-ALLOW:AXRole* 2 @MAC-ALLOW:AXRole*
3 @MAC-ALLOW:AXSubrole=* 3 @MAC-ALLOW:AXSubrole=*
4 @WIN-ALLOW:xml-roles:* 4 @WIN-ALLOW:xml-roles:*
5 --> 5 -->
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <html> 7 <html>
8 <body> 8 <body>
9 <header>This is a header element.</header> 9 <header>This is a header element.</header>
10 <aside>This is an aside element.</aside> 10 <aside>This is an aside element.</aside>
11 <address>This is an address element.</address> 11 <address>This is an address element.</address>
12 <footer>This is a footer element.</footer> 12 <footer>This is a footer element.</footer>
13 <form>This is a form element.</form> 13 <form>This is a form element.</form>
14 <main>This is a main element.</main> 14 <main>This is a main element.</main>
15 <nav>This is a nav element.</nav> 15 <nav>This is a nav element.</nav>
16 16
17 <div role="application">This is an ARIA application landmark.</div> 17 <div role="application">This is an ARIA application landmark.</div>
18 <div role="banner">This is an ARIA banner landmark.</div> 18 <div role="banner">This is an ARIA banner landmark.</div>
19 <div role="complementary">This is an ARIA complementary landmark.</div> 19 <div role="complementary">This is an ARIA complementary landmark.</div>
20 <div role="contentinfo">This is an ARIA contentinfo landmark.</div> 20 <div role="contentinfo">This is an ARIA contentinfo landmark.</div>
21 <div role="form">This is an ARIA form landmark.</div> 21 <div role="form">This is an ARIA form landmark.</div>
22 <div role="main">This is an ARIA main landmark.</div> 22 <div role="main">This is an ARIA main landmark.</div>
23 <div role="navigation">This is an ARIA navigation landmark.</div> 23 <div role="navigation">This is an ARIA navigation landmark.</div>
24 <div role="search">This is an ARIA search landmark.</div> 24 <div role="search">This is an ARIA search landmark.</div>
25
26 <article><header>This should NOT banner role.</header></article>
27 <aside><header>This should NOT have banner role.</header></aside>
28 <nav><header>This should NOT have banner role.</header></nav>
29 <section><header>This should NOT have banner role.</header></section>
30 <blockquote><header>This should NOT have banner role.</header></blockquote>
31 <details><header>This should NOT header role.</header></details>
32 <fieldset><header>This should NOT have banner role.</header></fieldset>
33 <figure><header>This should NOT have banner role.</header></figure>
34 <table><tr><td><header>This should NOT have banner role.</header></td></tr></t able>
35 <main><header>This should NOT have banner role.</header></main>
36
37 <article><div><header>This should NOT banner role.</header></div></article>
38 <aside><div><header>This should NOT have banner role.</header></div></aside>
39 <nav><div><header>This should NOT have banner role.</header></div></nav>
40 <section><div><header>This should NOT have banner role.</header></div></sectio n>
41 <blockquote><div><header>This should NOT have banner role.</header></div></blo ckquote>
42 <details><div><header>This should NOT header role.</header></div></details>
43 <fieldset><div><header>This should NOT have banner role.</header></div></field set>
44 <figure><div><header>This should NOT have banner role.</header></div></figure>
45 <table><tr><td><div><header>This should NOT have banner role.</header><div></t d></tr></table>
46 <main><div><header>This should NOT have banner role.</header></div></main>
47
48 <article><footer>This should NOT footer role.</footer></article>
49 <aside><footer>This should NOT have footer role.</footer></aside>
50 <nav><footer>This should NOT have footer role.</footer></nav>
51 <section><footer>This should NOT have footer role.</footer></section>
52 <blockquote><footer>This should NOT have footer role.</footer></blockquote>
53 <details><footer>This should NOT footer role.</footer></details>
54 <fieldset><footer>This should NOT have footer role.</footer></fieldset>
55 <figure><footer>This should NOT have footer role.</footer></figure>
56 <table><tr><td><footer>This should NOT have footer role.</footer></td></tr></t able>
57 <main><footer>This should NOT have footer role.</footer></main>
58
59 <article><div><footer>This should NOT footer role.</footer></div></article>
60 <aside><div><footer>This should NOT have footer role.</footer></div></aside>
61 <nav><div><footer>This should NOT have footer role.</footer></div></nav>
62 <section><div><footer>This should NOT have footer role.</footer></div></sectio n>
63 <blockquote><div><footer>This should NOT have footer role.</footer></div></blo ckquote>
64 <details><div><footer>This should NOT footer role.</footer></div></details>
65 <fieldset><div><footer>This should NOT have footer role.</footer></div></field set>
66 <figure><div><footer>This should NOT have footer role.</footer></div></figure>
67 <table><tr><td><div><footer>This should NOT have footer role.</footer><div></t d></tr></table>
68 <main><div><footer>This should NOT have footer role.</footer></div></main>
25 </body> 69 </body>
26 </html> 70 </html>
OLDNEW
« no previous file with comments | « no previous file | content/test/data/accessibility/html/landmark-expected-android.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698