blob: b8787da5511d50d3a8a25c6be80c9b025ed6fb59 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test-pre.js"></script>
</head>
<body id="body">
<div role="radiogroup" aria-label="radio 2">
<div role="radio" aria-label="radio 1" aria-checked=false>radio 1</div>
<div role="radio" aria-label="radio 2" aria-checked="true">radio 2</div>
</div>
<p id="description"></p>
<div id="console"></div>
<script>
description("This tests that the aria radiogroup role is correctly mapped to a WebCore accessibility role.");
if (window.accessibilityController) {
var body = document.getElementById("body");
body.focus();
var obj = accessibilityController.focusedElement.childAtIndex(0);
var succeeded = obj.role == "AXRole: AXRadioGroup";
shouldBe("succeeded", "true");
}
</script>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>