blob: 47ff815fcdafa0260ab63ad530aa376ffe5e3c0b [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css">
<script>
var successfullyParsed = false;
</script>
<script src="../../../fast/js/resources/js-test-pre.js"></script>
</head>
<body id="body">
<select size=10 id="deg1" lang="en-US" tabindex=0>
<option lang="ar">بث</option>
<option>Celsius</option>
</select>
<p id="description"></p>
<div id="console"></div>
<script>
description("This tests that the lang attribute is returned appropriately for option elements.");
if (window.accessibilityController) {
// Test the values in a multi-select list box.
document.getElementById("deg1").focus();
var selectbox = accessibilityController.focusedElement;
shouldBe("selectbox.childAtIndex(0).language", "'AXLanguage: ar'");
shouldBe("selectbox.childAtIndex(1).language", "'AXLanguage: en-US'");
}
successfullyParsed = true;
</script>
<script src="../../../fast/js/resources/js-test-post.js"></script>
</body>
</html>