blob: e8cf762c0e7af162dd01e438732e13fbb4fca121 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>aria-current with value location</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_IMAGE"
],
[
"property",
"states",
"contains",
"STATE_ACTIVE"
],
[
"property",
"objectAttributes",
"contains",
"current:location"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXImage"
],
[
"property",
"AXARIACurrent",
"is",
"location"
]
],
"IAccessible2" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_GRAPHIC"
],
[
"property",
"objectAttributes",
"contains",
"current:location"
],
[
"property",
"interfaces",
"contains",
"IAccessibleImage"
]
],
"MSAA" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_GRAPHIC"
]
],
"UIA" : [
[
"property",
"ControlType",
"is",
"Image"
],
[
"property",
"current",
"is",
"location"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "aria-current with value location"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for aria-current with value location.</p>
<div id="test" role="img" aria-current="location">1</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>