1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11

content / test / data / accessibility / event / description-change-no-relation.html [blame]

<!DOCTYPE html>
<html>
<body>
<div id="a" aria-description="1"></div>
<script>
  function go() {
    document.getElementById('a').setAttribute('aria-description', '2');
  }
</script>
</body>
</html>