blob: 89e9085fa22e45772c8f5e635e127b254ef5dd52 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../resources/js-test-pre.js"></script>
</head>
<body>
<em><code ><h4 ></em>
<p id="description"></p>
<div id="console"></div>
<script>
description("Child nodes should not be duplicated in the accessibility tree.");
if (window.accessibilityController) {
document.body.focus();
var webArea = accessibilityController.focusedElement;
if (webArea.childrenCount > 1)
shouldBe("webArea.childAtIndex(0).isEqual(webArea.childAtIndex(1))", "false");
}
</script>
<script src="../resources/js-test-post.js"></script>
</body>
</html>