Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<html>
<head>
<title>spinbutton all values unspecified</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_SPIN_BUTTON"
],
[
"property",
"interfaces",
"contains",
"Value"
],
[
"result",
"atk_value_get_minimum_value()",
"isLTE",
"-9007199254740992"
],
[
"result",
"atk_value_get_current_value()",
"is",
"0"
],
[
"result",
"atk_value_get_maximum_value()",
"isGTE",
"9007199254740992"
]
],
"AXAPI" : [
[
"property",
"AXRole",
"is",
"AXIncrementor"
],
[
"property",
"AXSubrole",
"is",
"<nil>"
],
[
"property",
"AXRoleDescription",
"is",
"stepper"
],
[
"property",
"AXMinValue",
"isLTE",
"-9007199254740992"
],
[
"property",
"AXValue",
"is",
"0"
],
[
"property",
"AXMaxValue",
"isGTE",
"9007199254740992"
]
],
"IAccessible2" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_SPINBUTTON"
],
[
"property",
"interfaces",
"contains",
"AccessibleValue"
],
[
"property",
"minimumValue",
"isLTE",
"-9007199254740992"
],
[
"property",
"currentValue",
"is",
"0"
],
[
"property",
"maximumValue",
"isGTE",
"9007199254740992"
]
],
"MSAA" : [
[
"property",
"role",
"is",
"ROLE_SYSTEM_SPINBUTTON"
]
],
"UIA" : [
[
"property",
"ControlType",
"is",
"Spinner"
],
[
"property",
"interfaces",
"contains",
"RangeValue"
],
[
"result",
"RangeValue.Minimum",
"isLTE",
"-9007199254740992"
],
[
"result",
"RangeValue.Value",
"is",
"0"
],
[
"result",
"RangeValue.Maximum",
"isGTE",
"9007199254740992"
]
]
},
"title" : "step 1",
"type" : "test"
}
],
"title" : "spinbutton all values unspecified"
}
) ;
</script>
</head>
<body>
<p>This test examines the ARIA properties for spinbutton all values unspecified.</p>
<div role="spinbutton" id="test">
Go Fish
</div>
<div id="manualMode"></div>
<div id="log"></div>
<div id="ATTAmessages"></div>
</body>
</html>