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

content / test / data / accessibility / event / input-type-text-value-changed.html [blame]

<!--
@WIN-DENY:*
@WIN-ALLOW:EVENT_OBJECT_VALUECHANGE*
@MAC-DENY:*
@MAC-ALLOW:AXValueChanged*AXTextField*
-->
<!DOCTYPE html>
<html>
<body>
<input id="c" type="text" value="Before">
<script>
  function go() {
    document.getElementById('c').value = "After";
  }
</script>
</body>
</html>