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

Side by Side Diff: content/test/data/accessibility/html/checkbox-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 <input id="c0" type="checkbox" title="Title0"> 9 <input id="c0" type="checkbox" title="Title0">
10 <input id="c1" type="checkbox" title="Title1"> 10 <input id="c1" type="checkbox" title="Title1">
11 <input id="c2" type="checkbox" title="Title2" aria-label="AriaLabel2"> 11 <input id="c2" type="checkbox" title="Title2" aria-label="AriaLabel2">
12 <input id="c3" type="checkbox" title="Title3" aria-label="AriaLabel3" 12 <input id="c3" type="checkbox" title="Title3" aria-label="AriaLabel3"
13 aria-labelledby="lb3"> 13 aria-labelledby="lb3">
14 <input id="c4" type="checkbox" title="Title4" aria-label="AriaLabel4" 14 <input id="c4" type="checkbox" title="Title4" aria-label="AriaLabel4"
15 aria-labelledby="lb4" aria-describedby="db4"> 15 aria-labelledby="lb4" aria-describedby="db4">
16 <input id="c5" type="checkbox" aria-describedby="db5"> 16 <input id="c5" type="checkbox" aria-describedby="db5">
17 17
18 <p aria-label="@NO_DUMP"> 18 <p aria-label="@NO_DUMP">
19 <label for="c1">Label1</label> 19 <label for="c1">Label1</label>
20 <label for="c2">Label2</label> 20 <label for="c2">Label2</label>
21 <label for="c3">Label3</label> 21 <label for="c3">Label3</label>
22 <label for="c4">Label4</label> 22 <label for="c4">Label4</label>
23 <span id="lb3">LabelledBy3</span> 23 <span id="lb3">LabelledBy3</span>
24 <span id="lb4">LabelledBy4</span> 24 <span id="lb4">LabelledBy4</span>
25 <span id="db4">DescribedBy4</span> 25 <span id="db4">DescribedBy4</span>
26 <span id="db5">DescribedBy5</span> 26 <span id="db5">DescribedBy5</span>
27 </p> 27 </p>
28 </body> 28 </body>
29 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698