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

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

Issue 1628283002: posinset and setsize for input type, radio, exposed in AX tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 @MAC-ALLOW:AXRole* 2 @MAC-ALLOW:AXRole*
3 @MAC-ALLOW:AXARIA* 3 @MAC-ALLOW:AXARIA*
4 @WIN-ALLOW:setsize* 4 @WIN-ALLOW:setsize*
5 @WIN-ALLOW:posinset* 5 @WIN-ALLOW:posinset*
6 --> 6 -->
7 <html> 7 <html>
8 <body> 8 <body>
9 <div role="listbox"> 9 <div role="listbox">
10 <div tabIndex="0" aria-setsize="4" aria-posinset="1" role="option">Item 1</div > 10 <div tabIndex="0" aria-setsize="4" aria-posinset="1" role="option">Item 1</div >
11 <div tabIndex="0" aria-setsize="4" aria-posinset="2" role="option">Item 2</div > 11 <div tabIndex="0" aria-setsize="4" aria-posinset="2" role="option">Item 2</div >
12 <div tabIndex="0" aria-setsize="4" aria-posinset="3" role="option">Item 3</div > 12 <div tabIndex="0" aria-setsize="4" aria-posinset="3" role="option">Item 3</div >
13 <div tabIndex="0" aria-setsize="4" aria-posinset="4" role="option">Item 4</div > 13 <div tabIndex="0" aria-setsize="4" aria-posinset="4" role="option">Item 4</div >
14 </div> 14 </div>
15 <div role="listbox"> 15 <div role="listbox">
16 <div tabIndex="0" role="option">Item 1</div> 16 <div tabIndex="0" role="option">Item 1</div>
17 <div tabIndex="0" role="option">Item 2</div> 17 <div tabIndex="0" role="option">Item 2</div>
18 <div tabIndex="0" role="option">Item 3</div> 18 <div tabIndex="0" role="option">Item 3</div>
19 <div tabIndex="0" role="option">Item 4</div> 19 <div tabIndex="0" role="option">Item 4</div>
20 <div tabIndex="0" role="option">Item 5</div> 20 <div tabIndex="0" role="option">Item 5</div>
21 </div> 21 </div>
22 <input type="radio" name="fruits" value="Apple">Apple<br>
23 <input type="radio" name="fruits" value="Banana">Banana
24 <form>
25 <input type="radio" name="color" value="Blue">Blue<br>
26 <input type="radio" name="color" value="Red">Red
27 </form>
28 <form>
29 <label><input type="radio" name="shape" value="Circle" checked>Circle</label><br >
30 <label> <input type="radio" name="shape" value="Rectangle">Rectangle</label>
31 </form>
32 <form>
33 <p><label><input type="radio" name="tea" value="GreenTea" checked disabled>Green Tea</label><br>
34 <label> <input type="radio" name="tea" value="BlackTea" disabled>Black Tea</labe l></p>
35 </form>
36 <form>
37 <fieldset>
38 <legend>Cake</legend>
39 <label><input type="radio" name="cake" value="Chiffon cakes" checked>Chiffon cak es</label><br>
40 <label> <input type="radio" name="cake" value="Chocolate cakes">Chocolate cakes< /label>
41 </fieldset>
42 </form>
22 </body> 43 </body>
23 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698