blob: 4200a08a6e0807e3b927f6dba3f9532bfabb6e0a [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>aria-haspopup='false'</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" : {
"IAccessible2" : [
[
"property",
"objectAttributes",
"contains",
"haspopup:false"
]
],
"MSAA" : [
[
"property",
"states",
"doesNotContain",
"STATE_SYSTEM_HASPOPUP"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "aria-haspopup='false'"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for aria-haspopup='false'.</p>
<div role='group' id='test' aria-haspopup='false'>content</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>