blob: 6d38293eaf7ee442e2ef81dca642b399f0b4a5ba [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>aria-dropeffect='copy'</title>
<link rel="stylesheet" href="/resources/testharness.css">
<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",
"objectAttributes",
"contains",
"dropeffect:copy"
]
],
"AXAPI" : [
[
"property",
"AXDropEffects",
"is",
"[copy]"
]
],
"IAccessible2" : [
[
"property",
"objectAttributes",
"contains",
"dropeffect:copy"
]
],
"UIA" : [
[
"property",
"AriaProperties.dropeffect",
"is",
"copy"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "aria-dropeffect='copy'"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for aria-dropeffect='copy'.</p>
<div role='group' id='test' aria-dropeffect='copy'>content</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>