blob: ca34ab51a7b7762e925530a91f7d9e6d6b7baefc [file] [log] [blame]
<html>
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
onload = function()
{
if (window.accessibilityController) {
var result = document.getElementById("result");
result.innerText += "Test for role attribute of document \n";
result.innerText += "----------------------------------- \n";
result.innerText += "role of Document : " +
accessibilityController.focusedElement.role +
" \n";
}
}
</script>
<body>
<div id="result">
</div>
</body>
</html>