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

Side by Side Diff: content/test/data/accessibility/html/input-radio-in-menu.html

Issue 2694903010: AX checked state changes (Closed)
Patch Set: git cl try Created 3 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
1 <!-- 1 <!--
2 @MAC-ALLOW:AXLinkedUIElements* 2 @WIN-ALLOW:CHECKED*
3 @WIN-ALLOW:MIXED* 3 @WIN-ALLOW:MIXED*
4 @WIN-ALLOW:checkable* 4 @WIN-ALLOW:checkable*
5 @WIN-ALLOW:ia2_hypertext=* 5 @WIN-ALLOW:ia2_hypertext=*
6 --> 6 -->
7 <html> 7 <html>
8 <body> 8 <body>
9 <menu type="list"> 9 <menu type="list">
10 <input type="radio" value="r1">Radio1 10 <input type="radio" name="rg1" value="r0" checked>Radio0
11 <label><input type="radio" name="r" value="r2">Radio2</label> 11 <input type="radio" name="rg1" value="r1">Radio1
12 <label><input type="radio" name="rg1" value="r2">Radio2</label>
12 </menu> 13 </menu>
13 <div role="menu"> 14 <div role="menu">
14 <label><input type="radio" name="r" value="r3">Radio3</label> 15 <label><input type="radio" name="rg2" value="r3">Radio3</label>
15 <input type="radio" value="r4"> 16 <input type="radio" name="rg2" value="r4">
17 <input type="radio" name="rg2" value="r5" checked>
16 </div> 18 </div>
17 </body> 19 </body>
18 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698