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

content / test / data / accessibility / regression / aria-hidden-tabindex-change.html [blame]

<!--
@BLINK-ALLOW:focus*
@WAIT-FOR:done
-->
<html>
<body>
<div aria-hidden="true">
  <div role="button">Button</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', () => {
  setTimeout(() => {
    document.querySelector('[role=button]').tabIndex = 0;
    document.title = 'done';
  }, 50);
});
</script>
</body>
</html>