mirror of
https://github.com/servo/servo.git
synced 2025-07-13 10:23:40 +01:00
124 lines
3.1 KiB
HTML
124 lines
3.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>switch checked 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_TOGGLE_BUTTON"
|
|
],
|
|
[
|
|
"property",
|
|
"states",
|
|
"contains",
|
|
"STATE_CHECKABLE"
|
|
],
|
|
[
|
|
"property",
|
|
"states",
|
|
"doesNotContain",
|
|
"STATE_CHECKED"
|
|
]
|
|
],
|
|
"AXAPI" : [
|
|
[
|
|
"property",
|
|
"AXRole",
|
|
"is",
|
|
"AXCheckBox"
|
|
],
|
|
[
|
|
"property",
|
|
"AXSubrole",
|
|
"is",
|
|
"AXSwitch"
|
|
],
|
|
[
|
|
"property",
|
|
"AXRoleDescription",
|
|
"is",
|
|
"switch"
|
|
],
|
|
[
|
|
"property",
|
|
"AXValue",
|
|
"is",
|
|
"0"
|
|
]
|
|
],
|
|
"IAccessible2" : [
|
|
[
|
|
"property",
|
|
"role",
|
|
"is",
|
|
"IA2_ROLE_TOGGLE_BUTTON"
|
|
],
|
|
[
|
|
"property",
|
|
"objectAttributes",
|
|
"contains",
|
|
"xml-roles:switch"
|
|
],
|
|
[
|
|
"property",
|
|
"objectAttributes",
|
|
"contains",
|
|
"checkable:true"
|
|
]
|
|
],
|
|
"UIA" : [
|
|
[
|
|
"property",
|
|
"ControlType",
|
|
"is",
|
|
"Button"
|
|
],
|
|
[
|
|
"property",
|
|
"LocalizedControlType",
|
|
"is",
|
|
"toggleswitch"
|
|
],
|
|
[
|
|
"property",
|
|
"Toggle.ToggleState",
|
|
"is",
|
|
"Off"
|
|
]
|
|
]
|
|
},
|
|
"title" : "step 1",
|
|
"type" : "test"
|
|
}
|
|
],
|
|
"title" : "switch checked undefined"
|
|
}
|
|
|
|
) ;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>This test examines the ARIA properties for switch checked undefined.</p>
|
|
<div id='test' role='switch' tabindex='0' class='switch'>power</div>
|
|
|
|
<div id="manualMode"></div>
|
|
<div id="log"></div>
|
|
<div id="ATTAmessages"></div>
|
|
</body>
|
|
</html>
|