Skip to content

Commit

Permalink
Update CORE-AAM AXAPI aria-description/describedby (web-platform-test…
Browse files Browse the repository at this point in the history
  • Loading branch information
spectranaut authored and Lightning00Blade committed Dec 11, 2023
1 parent ba31615 commit 1a595cd
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core-aam/aria-describedby-manual.html
Expand Up @@ -32,10 +32,10 @@
],
"AXAPI" : [
[
"property",
"AXHelp",
"api",
"accessibilityCustomContent",
"is",
"hello world"
"['label': 'hello world']"
]
],
"IAccessible2" : [
Expand Down
70 changes: 70 additions & 0 deletions core-aam/aria-description-manual.html
@@ -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" : [
[
"api",
"accessibilityCustomContent",
"is",
"['label': '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 1a595cd

Please sign in to comment.