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

content / test / data / accessibility / aria / aria-owns-crash-2.html [blame]

<!--
@WAIT-FOR:done
-->

<button id="3" aria-owns="4" tabindex="0"></button>
<div aria-owns="3"></div>

<script>
setTimeout(() => {
  document.getElementById('3').id = 4;
}, 500);
setTimeout(() => {
  document.title = 'done';
}, 1000);
</script>