mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
106 lines
2.5 KiB
HTML
106 lines
2.5 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>term role</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_DESCRIPTION_TERM"
|
|
],
|
|
[
|
|
"property",
|
|
"interfaces",
|
|
"contains",
|
|
"Text"
|
|
],
|
|
[
|
|
"property",
|
|
"interfaces",
|
|
"contains",
|
|
"Hypertext"
|
|
]
|
|
],
|
|
"AXAPI" : [
|
|
[
|
|
"property",
|
|
"AXRole",
|
|
"is",
|
|
"AXGroup"
|
|
],
|
|
[
|
|
"property",
|
|
"AXSubrole",
|
|
"is",
|
|
"AXTerm"
|
|
],
|
|
[
|
|
"property",
|
|
"AXRoleDescription",
|
|
"is",
|
|
"term"
|
|
]
|
|
],
|
|
"MSAA" : [
|
|
[
|
|
"property",
|
|
"role",
|
|
"is",
|
|
"ROLE_SYSTEM_TERM"
|
|
],
|
|
[
|
|
"property",
|
|
"states",
|
|
"contains",
|
|
"ROLE_SYSTEM_READONLY"
|
|
]
|
|
],
|
|
"UIA" : [
|
|
[
|
|
"property",
|
|
"ControlType",
|
|
"is",
|
|
"Text"
|
|
]
|
|
]
|
|
},
|
|
"title" : "step 1",
|
|
"type" : "test"
|
|
}
|
|
],
|
|
"title" : "term role"
|
|
}
|
|
|
|
) ;
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>This test examines the ARIA properties for term role.</p>
|
|
<div role="term" id='test' aria-describedby="dfn">
|
|
w3c
|
|
</div>
|
|
<div role="definition" id="dfn">
|
|
World Wide Web Consortium
|
|
</div>
|
|
|
|
|
|
<div id="manualMode"></div>
|
|
<div id="log"></div>
|
|
<div id="ATTAmessages"></div>
|
|
</body>
|
|
</html>
|