blob: dc2ce9aef271526cb98e32aa019b9de5251f7589 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../../resources/js-test-pre.js"></script>
<script>
var successfullyParsed = false;
</script>
</head>
<body id="body">
<input type="text" id="text">
<p id="description"></p>
<div id="console"></div>
<script>
description("This makes sure that you can set the ax value through accessibility.");
if (window.accessibilityController) {
var textField = accessibilityController.accessibleElementById("text");
debug("Initial value : " + textField.iphoneValue);
textField.setValue("TEST");
debug("Final value : " + textField.iphoneValue);
}
successfullyParsed = true;
</script>
<script src="../../../../resources/js-test-post.js"></script>
</body>
</html>