blob: 53154a6a2f2173663ef11bae910a295f46d81b26 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../resources/js-test-pre.js"></script>
</head>
<body id="body">
<img id="image1" src="foo.gif" title="baz" width="100" height="100">
<div id="console"></div>
<script>
description("This tests that if a missing image has a title attribute, it still appears in the AX hierarchy.");
if (window.accessibilityController) {
var image1 = accessibilityController.accessibleElementById("image1");
debug("image1.role is " + image1.role);
debug("image1.description is " + image1.description);
}
</script>
<script src="../resources/js-test-post.js"></script>
</body>
</html>