blob: d8282fcc2bd1562101cd8bcf0deb05d685558c91 [file] [log] [blame]
<html>
<html>
<head>
<script src="../resources/js-test-pre.js"></script>
</head>
<body id="body">
<input type="image" alt="Submit" src="resources/cake.png" width=100 height=100 id="image1">
<p id="description"></p>
<div id="console"></div>
<script>
if (window.accessibilityController) {
description("This test makes sure that an input image returns its alt tag as the description");
var image1 = document.getElementById("image1").focus();
var img = accessibilityController.focusedElement;
if (accessibilityController.platformName == "atk")
debug("img.title is " + img.title);
else
debug("img.description is " + img.description);
}
</script>
<script src="../resources/js-test-post.js"></script>
</body>
</html>