blob: 4fce4bcfbff948f38e8ac5791af23fd271524ae7 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../resources/js-test.js"></script>
</head>
<body id="body">
<h1 aria-hidden="true">h1 <b>test</b></h1>
<h2 aria-hidden="false">h2</h2>
<p id="description"></p>
<div id="console"></div>
<script>
description("This tests that the aria-hidden attribute works correctly with accessibility. The H1 element (and its children) should not appear in the AX hierarchy. The H2 element should be the first child");
if (window.accessibilityController) {
var body = document.getElementById("body");
body.focus();
var h2 = accessibilityController.focusedElement.childAtIndex(0);
shouldBe("h2.name", "'h2'");
}
</script>
</body>
</html>