separator_focusable_valuetext-manual.html (5203B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>separator focusable valuetext</title> 5 <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> 6 <link rel="stylesheet" href="/wai-aria/scripts/manual.css"> 7 <script src="/resources/testharness.js"></script> 8 <script src="/resources/testharnessreport.js"></script> 9 <script src="/wai-aria/scripts/ATTAcomm.js"></script> 10 <script> 11 setup({explicit_timeout: true, explicit_done: true }); 12 13 var theTest = new ATTAcomm( 14 { 15 "steps" : [ 16 { 17 "element" : "test", 18 "test" : { 19 "ATK" : [ 20 [ 21 "property", 22 "role", 23 "is", 24 "ROLE_SEPARATOR" 25 ], 26 [ 27 "property", 28 "objectAttributes", 29 "contains", 30 "valuetext:Bonaire" 31 ], 32 [ 33 "property", 34 "interfaces", 35 "contains", 36 "Value" 37 ], 38 [ 39 "result", 40 "atk_value_get_minimum_value()", 41 "is", 42 "0" 43 ], 44 [ 45 "result", 46 "atk_value_get_current_value()", 47 "is", 48 "50" 49 ], 50 [ 51 "result", 52 "atk_value_get_maximum_value()", 53 "is", 54 "100" 55 ] 56 ], 57 "AXAPI" : [ 58 [ 59 "property", 60 "AXRole", 61 "is", 62 "AXSplitter" 63 ], 64 [ 65 "property", 66 "AXSubrole", 67 "is", 68 "<nil>" 69 ], 70 [ 71 "property", 72 "AXRoleDescription", 73 "is", 74 "splitter" 75 ], 76 [ 77 "property", 78 "AXMinValue", 79 "is", 80 "0" 81 ], 82 [ 83 "property", 84 "AXValue", 85 "is", 86 "50" 87 ], 88 [ 89 "property", 90 "AXMaxValue", 91 "is", 92 "100" 93 ], 94 [ 95 "property", 96 "AXValueDescription", 97 "is", 98 "Bonaire" 99 ] 100 ], 101 "IAccessible2" : [ 102 [ 103 "property", 104 "role", 105 "is", 106 "ROLE_SYSTEM_SEPARATOR" 107 ], 108 [ 109 "property", 110 "interfaces", 111 "contains", 112 "AccessibleValue" 113 ], 114 [ 115 "property", 116 "objectAttributes", 117 "contains", 118 "valuetext:Bonaire" 119 ], 120 [ 121 "property", 122 "minimumValue", 123 "is", 124 "0" 125 ], 126 [ 127 "property", 128 "currentValue", 129 "is", 130 "50" 131 ], 132 [ 133 "property", 134 "maximumValue", 135 "is", 136 "100" 137 ] 138 ], 139 "MSAA" : [ 140 [ 141 "property", 142 "role", 143 "is", 144 "ROLE_SYSTEM_SEPARATOR" 145 ] 146 ], 147 "UIA" : [ 148 [ 149 "property", 150 "ControlType", 151 "is", 152 "Thumb" 153 ], 154 [ 155 "property", 156 "controlPatterns", 157 "contains", 158 "RangeValue" 159 ], 160 [ 161 "result", 162 "RangeValue.Minimum", 163 "is", 164 "0" 165 ], 166 [ 167 "result", 168 "RangeValue.Value", 169 "is", 170 "50" 171 ], 172 [ 173 "result", 174 "RangeValue.Maximum", 175 "is", 176 "100" 177 ], 178 [ 179 "property", 180 "Value.Value", 181 "is", 182 "Bonaire" 183 ] 184 ] 185 }, 186 "title" : "step 1", 187 "type" : "test" 188 } 189 ], 190 "title" : "separator focusable valuetext" 191 } 192 193 ) ; 194 </script> 195 </head> 196 <body> 197 <p>This test examines the ARIA properties for separator focusable valuetext.</p> 198 <div tabindex="0" role="separator" aria-valuetext="Bonaire" id="test"> 199 Go Fish 200 </div> 201 202 <div id="manualMode"></div> 203 <div id="log"></div> 204 <div id="ATTAmessages"></div> 205 </body> 206 </html>