1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14

content / test / data / accessibility / html / isInteresting.html [blame]

<!--
@ANDROID-ALLOW:interesting
@ANDROID-DENY:clickable
-->
<!DOCTYPE html>
<html>
<body>
<h1>A non focusable child of a control should not be interesting on Android</h1>
<div onclick="alert('success');">Div with click handler</div>
<div onclick="alert('success');" aria-label= "I am interesting" role="button">
  <p>I should not be interesting</p>
</div>
</body>
</html>