| OLD | NEW |
| 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> |
| OLD | NEW |