| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Checking nodes marked as clickable</title> | |
| </head> | |
| <body> | |
| <div>Generic div</div> | |
| <h1>Heading</h1> | |
| <button>Button</button> | |
| <div onclick="alert('success');" role="group"> | |
| <p>Paragraph with click handler on parent and should be not marked as clickable</p> | |
| </div> | |
| </body> | |
| </html> |