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

Side by Side Diff: content/test/data/accessibility/html/action-verbs.html

Issue 2863703003: A11y: Rename AXSupportedAction to AXDefaultActionVerb. (Closed)
Patch Set: Rebase. Created 3 years, 7 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 @BLINK-ALLOW:action* 2 @BLINK-ALLOW:defaultActionVerb*
3 --> 3 -->
4 <!doctype html> 4 <!doctype html>
5 <html> 5 <html>
6 <head> 6 <head>
7 <title>Action verbs</title> 7 <title>Action verbs</title>
8 </head> 8 </head>
9 <body> 9 <body>
10 <div>Generic div</div> 10 <div>Generic div</div>
11 <h1>Heading</h1> 11 <h1>Heading</h1>
12 <button>Button</button> 12 <button>Button</button>
13 <a href="#">Link</a> 13 <a href="#">Link</a>
14 <input> 14 <input>
15 <input type=checkbox> 15 <input type=checkbox>
16 <input type=checkbox checked> 16 <input type=checkbox checked>
17 <input type=radio> 17 <input type=radio>
18 <div tabIndex=0 role="switch">ARIA Switch</div> 18 <div tabIndex=0 role="switch">ARIA Switch</div>
19 <select><option>Pop-up button</select> 19 <select><option>Pop-up button</select>
20 <div onclick="alert('success');">Div with click handler</div> 20 <div onclick="alert('success');">Div with click handler</div>
21 </body> 21 </body>
22 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698