1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11

content / test / data / accessibility / event / live-region-off.html [blame]

<!DOCTYPE html>
<html>
<body>
<div id="live" aria-live="off">Before</div>
<script>
  function go() {
    document.getElementById('live').firstChild.data = 'After';
  }
</script>
</body>
</html>