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

Side by Side Diff: content/test/data/accessibility/button-name-calc.html

Issue 815463006: Separating ARIA, HTML & event AX test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 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
(Empty)
1 <!--
2 @WIN-ALLOW:description*
3 @MAC-ALLOW:AXDescription*
4 @MAC-ALLOW:AXHelp*
5 @MAC-DENY:AXValue*
6 -->
7 <html>
8 <body>
9 <button id="c0">InnerText0</button>
10 <button id="c1" title="Title1">InnerText1</button>
11 <button id="c2" title="Title2" aria-label="AriaLabel2">InnerText2</button>
12 <button id="c3" title="Title3" aria-label="AriaLabel3"
13 aria-labelledby="lb3">InnerText3</button>
14 <button id="c4" title="Title4" aria-label="AriaLabel4"
15 aria-labelledby="lb4" aria-describedby="db4">InnerText4</button>
16 <button id="c5" aria-describedby="db5">InnerText5</button>
17
18 <p aria-label="@NO_DUMP">
19 <span id="lb3">LabelledBy3</span>
20 <span id="lb4">LabelledBy4</span>
21 <span id="db4">DescribedBy4</span>
22 <span id="db5">DescribedBy5</span>
23 </p>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698