blob: f062e695fbbde26a27f8d51ab9e62e1885f981ed [file] [edit]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"><!-- webkit-test-runner [ IsAccessibilityIsolatedTreeEnabled=true ] -->
<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);
debug("h2.title is " + h2.title);
}
</script>
</body>
</html>