mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
f1ec562e32
Automatic update from web-platform-testsFix #10875: run parsed lints for visual tests CSS tests, due to their metadata requirement, default to visual tests, hence it's important we run all of these lints (to in this case catch ../testharness.js) -- Extend the previous commit to also check manual tests Plenty of manual tests use testharness.js so we should check them too, and indeed there's plenty of broken tests so fix them too -- wpt-commits: b54c11b055959abeefafcde601853ea4cb247e0b, c327c2747db6b71c8c45f61e0a97785a9be622c2 wpt-pr: 10876
126 lines
3.0 KiB
HTML
126 lines
3.0 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>
|