blob: 2a64ab936ea194bb720136de6b1ae62dc5ee1855 [file] [log] [blame]
<html>
<head>
<script src="../../../fast/js/resources/js-test-pre.js"></script>
</head>
<body id="body">
<p>This tests that elements return their correct parent element.</p>
<p id="notDRT">This test should only be run inside of DumpRenderTree.</p>
<select id="selectElement" multiple>
<option>Option 1</option>
</select>
<p id="console"></p>
<script>
if (window.testRunner && window.accessibilityController) {
document.getElementById("notDRT").style.visibility = "hidden";
testRunner.dumpAsText();
document.getElementById("selectElement").focus();
var optionElement = accessibilityController.focusedElement.childAtIndex(0);
shouldBe('optionElement.parentElement().role', '"list"');
}
</script>
</body>
</html>