tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

grid_busy_false-manual.html (4151B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>grid busy false</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_TABLE"
     25               ],
     26               [
     27                  "property",
     28                  "objectAttributes",
     29                  "contains",
     30                  "xml-roles:grid"
     31               ],
     32               [
     33                  "property",
     34                  "interfaces",
     35                  "contains",
     36                  "Table"
     37               ],
     38               [
     39                  "property",
     40                  "interfaces",
     41                  "contains",
     42                  "Selection"
     43               ],
     44               [
     45                  "result",
     46                  "atk_selection_clear_selection()",
     47                  "is",
     48                  "false"
     49               ],
     50               [
     51                  "property",
     52                  "states",
     53                  "doesNotContain",
     54                  "STATE_BUSY"
     55               ]
     56            ],
     57            "AXAPI" : [
     58               [
     59                  "property",
     60                  "AXRole",
     61                  "is",
     62                  "AXTable"
     63               ],
     64               [
     65                  "property",
     66                  "AXSubrole",
     67                  "is",
     68                  "<nil>"
     69               ],
     70               [
     71                  "property",
     72                  "AXRoleDescription",
     73                  "is",
     74                  "table"
     75               ],
     76               [
     77                  "property",
     78                  "AXElementBusy",
     79                  "is",
     80                  "false"
     81               ]
     82            ],
     83            "IAccessible2" : [
     84               [
     85                  "property",
     86                  "objectAttributes",
     87                  "contains",
     88                  "xml-roles:grid"
     89               ],
     90               [
     91                  "property",
     92                  "interfaces",
     93                  "contains",
     94                  "IAccessibleTable2"
     95               ]
     96            ],
     97            "MSAA" : [
     98               [
     99                  "property",
    100                  "role",
    101                  "is",
    102                  "ROLE_SYSTEM_TABLE"
    103               ],
    104               [
    105                  "property",
    106                  "states",
    107                  "doesNotContain",
    108                  "STATE_SYSTEM_BUSY"
    109               ]
    110            ],
    111            "UIA" : [
    112               [
    113                  "property",
    114                  "ControlType",
    115                  "is",
    116                  "DataGrid"
    117               ],
    118               [
    119                  "property",
    120                  "interfaces",
    121                  "contains",
    122                  "selection pattern"
    123               ],
    124               [
    125                  "result",
    126                  "AriaProperties.busy",
    127                  "is",
    128                  "false"
    129               ]
    130            ]
    131         },
    132         "title" : "step 1",
    133         "type" : "test"
    134      }
    135   ],
    136   "title" : "grid busy false"
    137 }
    138 
    139    ) ;
    140    </script>
    141  </head>
    142  <body>
    143  <p>This test examines the ARIA properties for grid busy false.</p>
    144    <div role="grid" aria-busy="false" id="test">
    145    <div role="row">
    146       <div role="columnheader">shoes</div>
    147       <div role="columnheader">shirts</div>
    148    </div>
    149    <div role="row">
    150       <div role="gridcell">loafers</div>
    151       <div role="gridcell">polo</div>
    152    </div>
    153    <div role="row">
    154       <div role="gridcell">laced</div>
    155       <div role="gridcell">rugby</div>
    156    </div>
    157  </div>
    158 
    159  <div id="manualMode"></div>
    160  <div id="log"></div>
    161  <div id="ATTAmessages"></div>
    162  </body>
    163 </html>