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

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

Issue 1063383005: Chromium side Implementation to expose aria properties - setsize & posinset (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updating expectations on android Created 5 years, 8 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 @MAC-ALLOW:AXRole*
3 @MAC-ALLOW:AXARIA*
4 @WIN-ALLOW:setsize*
5 @WIN-ALLOW:posinset*
6 -->
7 <html>
8 <body>
9 <div role="listbox">
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 >
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 >
14 </div>
15 <div role="listbox">
16 <div tabIndex="0" role="option">Item 1</div>
17 <div tabIndex="0" role="option">Item 2</div>
18 <div tabIndex="0" role="option">Item 3</div>
19 <div tabIndex="0" role="option">Item 4</div>
20 <div tabIndex="0" role="option">Item 5</div>
21 </div>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698