1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11

content / test / data / accessibility / event / name-change.html [blame]

<!DOCTYPE html>
<html>
<body>
<h1 id="a">Before</h1>
<script>
  function go() {
    document.getElementById('a').setAttribute('aria-label', 'After');
  }
</script>
</body>
</html>