blob: f6b932f1e564e53faed4cc4408fc01c7a12bd200 [file] [edit]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../resources/js-test.js"></script>
</head>
<body id="body">
<abbr tabindex="0" id="abbrItem" role="text" aria-label="inch">"</abbr>
<p id="description"></p>
<div id="console"></div>
<script>
description("This tests that aria-label on a role='text' does not duplicate the AXValue in the AXDescription");
if (window.accessibilityController) {
document.getElementById("abbrItem").focus();
shouldBe("accessibilityController.focusedElement.description", "'AXDescription: '");
shouldBe("accessibilityController.focusedElement.stringValue", "'AXValue: inch'");
}
</script>
</body>
</html>