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

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

Issue 2694903010: AX checked state changes (Closed)
Patch Set: Test checkbox attribute in automation API, fix whitespace, remove change to third party code Created 3 years, 9 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:CHECKED*
2 @WIN-ALLOW:MIXED* 3 @WIN-ALLOW:MIXED*
3 @WIN-ALLOW:checkable* 4 @WIN-ALLOW:checkable*
4 @WIN-ALLOW:ia2_hypertext=* 5 @WIN-ALLOW:ia2_hypertext=*
5 --> 6 -->
6 <html> 7 <html>
7 <body> 8 <body>
8 <menu type="list"> 9 <menu type="list">
9 <input type="radio" value="r1">Radio1 10 <input type="radio" name="rg1" value="r0" checked>Radio0
10 <label><input type="radio" value="r2">Radio2</label> 11 <input type="radio" name="rg1" value="r1">Radio1
12 <label><input type="radio" name="rg1" value="r2">Radio2</label>
11 </menu> 13 </menu>
12 <div role="menu"> 14 <div role="menu">
13 <label><input type="radio" value="r3">Radio3</label> 15 <label><input type="radio" name="rg2" value="r3">Radio3</label>
14 <input type="radio" value="r4"> 16 <input type="radio" name="rg2" value="r4">
17 <input type="radio" name="rg2" value="r5" checked>
15 </div> 18 </div>
16 </body> 19 </body>
17 </html> 20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698