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

content / test / data / accessibility / event / checked-mixed-changed.html [blame]

<!DOCTYPE html>
<html>
<body>
<input id="c" type="checkbox" aria-label="My Checkbox">
<div id="treeitem" role="treeitem" aria-checked="false">Treeitem</div>
<script>
  function go() {
    document.getElementById('c').indeterminate = true;
    document.getElementById('treeitem').setAttribute('aria-checked', 'mixed');
  }
</script>
</body>
</html>