Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CORE-AAM AXAPI aria-description/describedby #38307

Merged
merged 2 commits into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions core-aam/aria-describedby-manual.html
Original file line number Diff line number Diff line change
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
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" : [
[
"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>