Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<html>
<head>
<title>graphics-object on SVG element</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_PANEL"
],
[
"property",
"objectAttributes",
"contains",
"xml-roles:graphics-object"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXGroup"
],
[
"property",
"AXSubrole",
"is",
"<nil>"
],
[
"property",
"AXRoleDescription",
"is",
"group"
]
],
"IAccessible2" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_GROUPING"
],
[
"property",
"objectAttributes",
"contains",
"xml-roles:graphics-object"
]
],
"UIA" : [
[
"property",
"ControlType",
"is",
"Group"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "graphics-object on SVG element"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for graphics-object on SVG element.</p>
<svg xmlns="http://www.w3.org/2000/svg" role="graphics-document">
<g id="test" role="graphics-object" aria-label="door">
<rect fill="darkKhaki" stroke="#632" width="50" height="90" />
<circle fill="gray" stroke="#444" stroke-width="0.7" cx="10" cy="50" r="4" />
</g>
</svg>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>