blob: 0a73d9b428ed1fffe17c02bf2c852f23fd51b7bb [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../resources/js-test.js"></script>
</head>
<body id="body">
<h3 role="presentation">
<a href="#">Link</a> and text
</h3>
<p id="description"></p>
<div id="console"></div>
<script>
description("This tests that the aria 'presentation' role works by successfully removing the element from the AX tree.");
if (window.accessibilityController) {
var body = document.getElementById("body");
body.focus();
var firstChild = accessibilityController.focusedElement.childAtIndex(0);
shouldBeTrue("firstChild.isIgnored");
}
</script>
</body>
</html>