Skip to content

Commit

Permalink
CORE-AAM: add tests for aria-description
Browse files Browse the repository at this point in the history
See issue: w3c/core-aam#60
  • Loading branch information
spectranaut committed Jul 12, 2022
1 parent 715c7c9 commit 93eb14b
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions core-aam/aria-description-manual.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<!doctype html>
<html>
<head>
<title>aria-description</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",
"Description",
"is",
"hello world"
]
],
"AXAPI" : [
[
"property",
"AXHelp",
"is",
"hello world"
]
],
"IAccessible2" : [
[
"property",
"accDescriptio",
"is",
"hello world"
]
],
"UIA" : [
[
"property",
"FullDescription",
"is",
"hello world"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "aria-description"
}

) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for aria-description.</p>
<div role='group' id='test' aria-description='hello world'>content</div>

<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>

0 comments on commit 93eb14b

Please sign in to comment.