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

Side by Side Diff: content/test/data/accessibility/html/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
1 <!-- 1 <!--
2 @WIN-ALLOW:description* 2 @WIN-ALLOW:description*
3 @MAC-ALLOW:AXDescription* 3 @MAC-ALLOW:AXDescription*
4 @MAC-ALLOW:AXHelp* 4 @MAC-ALLOW:AXHelp*
5 @MAC-DENY:AXValue* 5 @MAC-DENY:AXValue*
6 --> 6 -->
7 <html> 7 <html>
8 <body> 8 <body>
9 <button id="c0">InnerText0</button> 9 <button id="c0">InnerText0</button>
10 <button id="c1" title="Title1">InnerText1</button> 10 <button id="c1" title="Title1">InnerText1</button>
11 <button id="c2" title="Title2" aria-label="AriaLabel2">InnerText2</button> 11 <button id="c2" title="Title2" aria-label="AriaLabel2">InnerText2</button>
12 <button id="c3" title="Title3" aria-label="AriaLabel3" 12 <button id="c3" title="Title3" aria-label="AriaLabel3"
13 aria-labelledby="lb3">InnerText3</button> 13 aria-labelledby="lb3">InnerText3</button>
14 <button id="c4" title="Title4" aria-label="AriaLabel4" 14 <button id="c4" title="Title4" aria-label="AriaLabel4"
15 aria-labelledby="lb4" aria-describedby="db4">InnerText4</button> 15 aria-labelledby="lb4" aria-describedby="db4">InnerText4</button>
16 <button id="c5" aria-describedby="db5">InnerText5</button> 16 <button id="c5" aria-describedby="db5">InnerText5</button>
17 17
18 <p aria-label="@NO_DUMP"> 18 <p aria-label="@NO_DUMP">
19 <span id="lb3">LabelledBy3</span> 19 <span id="lb3">LabelledBy3</span>
20 <span id="lb4">LabelledBy4</span> 20 <span id="lb4">LabelledBy4</span>
21 <span id="db4">DescribedBy4</span> 21 <span id="db4">DescribedBy4</span>
22 <span id="db5">DescribedBy5</span> 22 <span id="db5">DescribedBy5</span>
23 </p> 23 </p>
24 </body> 24 </body>
25 </html> 25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698