blob: e68b6bb0d27aef4cbfad98217151a544fa5231ba [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>switch readonly false</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_TOGGLE_BUTTON"
],
[
"property",
"states",
"doesNotContain",
"STATE_READ_ONLY"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXCheckBox"
],
[
"property",
"AXSubrole",
"is",
"AXSwitch"
],
[
"property",
"AXRoleDescription",
"is",
"switch"
],
[
"result",
"AXUIElementIsAttributeSettable(AXValue)",
"is",
"true"
]
],
"IAccessible2" : [
[
"property",
"role",
"is",
"IA2_ROLE_TOGGLE_BUTTON"
],
[
"property",
"objectAttributes",
"contains",
"xml-roles:switch"
],
[
"property",
"states",
"contains",
"IA2_STATE_EDITABLE"
]
],
"UIA" : [
[
"property",
"ControlType",
"is",
"Button"
],
[
"property",
"LocalizedControlType",
"is",
"toggleswitch"
],
[
"property",
"Value.IsReadOnly",
"is",
"false"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "switch readonly false"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for switch readonly false.</p>
<div id="test" role="switch" aria-readonly="false">
</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>