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

content / test / data / accessibility / aria / aria-hidden-focused-input.html [blame]

<!--
@AURALINUX-ALLOW:focus*
@AURALINUX-ALLOW:hidden*
@AURALINUX-ALLOW:showing
@AURALINUX-ALLOW:visible
-->
<html>
<body>
<div aria-hidden="true">
  <input id="input1" aria-label="input 1">
  <input id="input2" aria-label="input 2">
</div>
<script>
  document.getElementById("input2").focus();
</script>
</body>
</html>