mirror of
https://github.com/servo/servo.git
synced 2025-07-16 03:43:38 +01:00
125 lines
3 KiB
HTML
125 lines
3 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>treeitem selected undefined</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" : [
|
|
{
|
|
"element" : "test",
|
|
"test" : {
|
|
"ATK" : [
|
|
[
|
|
"property",
|
|
"role",
|
|
"is",
|
|
"ROLE_TREE_ITEM"
|
|
],
|
|
[
|
|
"property",
|
|
"states",
|
|
"doesNotContain",
|
|
"STATE_SELECTED"
|
|
],
|
|
[
|
|
"property",
|
|
"states",
|
|
"contains",
|
|
"STATE_SELECTABLE"
|
|
]
|
|
],
|
|
"AXAPI" : [
|
|
[
|
|
"property",
|
|
"AXRole",
|
|
"is",
|
|
"AXRow"
|
|
],
|
|
[
|
|
"property",
|
|
"AXSubrole",
|
|
"is",
|
|
"AXOutlineRow"
|
|
],
|
|
[
|
|
"property",
|
|
"AXRoleDescription",
|
|
"is",
|
|
"outline row"
|
|
],
|
|
[
|
|
"property",
|
|
"AXSelected",
|
|
"is",
|
|
"false"
|
|
]
|
|
],
|
|
"MSAA" : [
|
|
[
|
|
"property",
|
|
"role",
|
|
"is",
|
|
"ROLE_SYSTEM_OUTLINEITEM"
|
|
],
|
|
[
|
|
"property",
|
|
"states",
|
|
"doesNotContain",
|
|
"STATE_SYSTEM_SELECTED"
|
|
],
|
|
[
|
|
"property",
|
|
"states",
|
|
"contains",
|
|
"STATE_SYSTEM_SELECTABLE"
|
|
]
|
|
],
|
|
"UIA" : [
|
|
[
|
|
"property",
|
|
"ControlType",
|
|
"is",
|
|
"TreeItem"
|
|
],
|
|
[
|
|
"property",
|
|
"ControlPatterns",
|
|
"doesNotContain",
|
|
"SelectionItem"
|
|
]
|
|
]
|
|
},
|
|
"title" : "step 1",
|
|
"type" : "test"
|
|
}
|
|
],
|
|
"title" : "treeitem selected undefined"
|
|
}
|
|
|
|
) ;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>This test examines the ARIA properties for treeitem selected undefined.</p>
|
|
<UL role="tree">
|
|
<li role="treeitem" id="test">
|
|
Fish
|
|
</li>
|
|
<li role="treeitem">
|
|
beef
|
|
</li>
|
|
</ul>
|
|
|
|
<div id="manualMode"></div>
|
|
<div id="log"></div>
|
|
<div id="ATTAmessages"></div>
|
|
</body>
|
|
</html>
|