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

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

Issue 718483002: Input type button in group role is not exposed correctly on Mac.(Chromium) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 @WIN-ALLOW:xml-roles:* 3 @WIN-ALLOW:xml-roles:*
3 --> 4 -->
4 <html> 5 <html>
5 <body> 6 <body>
6 <menu type="list"> 7 <menu type="list">
7 <input type="button" value="Button in menu element"> 8 <input type="button" value="Button in menu element">
8 </menu> 9 </menu>
9 <div role="menu"> 10 <div role="menu">
10 <input type="button" value="Button in element with menu role"> 11 <input type="button" value="Button in element with menu role">
11 </div> 12 </div>
13 <div role="group">
14 <input type="button" value="Button in element with group role">
15 </div>
12 16
13 </body> 17 </body>
14 </html> 18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698