Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<html>
<head>
<title>treeitem selected value changes</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<link rel="stylesheet" href="/wai-aria/scripts/manual.css">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/wai-aria/scripts/ATTAcomm.js"></script>
<script>
setup({explicit_timeout: true, explicit_done: true });
var theTest = new ATTAcomm(
{
"steps" : [
{
"attribute" : "aria-activedescendant",
"element" : "test1",
"title" : "step 1",
"type" : "attribute",
"value" : "\"test\" "
},
{
"attribute" : "aria-selected",
"element" : "test",
"title" : "step 2",
"type" : "attribute",
"value" : "\"true\""
},
{
"attribute" : "aria-selected",
"element" : "test2",
"title" : "step 3",
"type" : "attribute",
"value" : "\"false\""
},
{
"element" : "test",
"test" : {
"ATK" : [
[
"event",
"type",
"is",
"object:state-changed:selected"
],
[
"event",
"detail1",
"is",
"1"
]
],
"MSAA" : [
[
"event",
"type",
"is",
"EVENT_OBJECT_SELECTION"
],
[
"event",
"type",
"is",
"EVENT_OBJECT_STATECHANGE"
]
],
"UIA" : [
[
"event",
"type",
"is",
"UIA_SelectionItem_ElementSelectedEventId"
]
]
},
"title" : "step 4",
"type" : "test"
},
{
"element" : "test1",
"test" : {
"ATK" : [
[
"event",
"type",
"is",
"object:selection-changed"
]
],
"AXAPI" : [
[
"event",
"type",
"is",
"AXSelectedChildrenChanged"
]
]
},
"title" : "step 5",
"type" : "test"
},
{
"element" : "test2",
"test" : {
"ATK" : [
[
"event",
"type",
"is",
"object:state-changed:selected"
],
[
"event",
"detail1",
"is",
"0"
]
]
},
"title" : "step 6",
"type" : "test"
}
],
"title" : "treeitem selected value changes"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for treeitem selected value changes.</p>
<ul id="test1" aria-activedescendant="test2" role="tree">
<li role="treeitem" aria-selected="false" id="test">
Fish
</li>
<li id="test2" aria-selected="true" role="treeitem">
beef
</li>
</ul>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>