tor-browser

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

grid-manual.html (4050B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>grid</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            "AXAPI" : [
     46               [
     47                  "property",
     48                  "AXRole",
     49                  "is",
     50                  "AXTable"
     51               ],
     52               [
     53                  "property",
     54                  "AXSubrole",
     55                  "is",
     56                  "<nil>"
     57               ],
     58               [
     59                  "property",
     60                  "AXColumnHeaderUIElements",
     61                  "is",
     62                  "[colheader1, colheader2]"
     63               ],
     64               [
     65                  "property",
     66                  "AXHeader",
     67                  "is",
     68                  "AXGroup"
     69               ],
     70               [
     71                  "property",
     72                  "AXRowHeaderUIElements",
     73                  "is",
     74                  "[rowheader1, rowheader2]"
     75               ]
     76            ],
     77            "IAccessible2" : [
     78               [
     79                  "property",
     80                  "objectAttributes",
     81                  "contains",
     82                  "xml-roles:grid"
     83               ],
     84               [
     85                  "property",
     86                  "interfaces",
     87                  "contains",
     88                  "IAccessibleTable2"
     89               ],
     90               [
     91                  "result",
     92                  "IAccessible::accSelect()",
     93                  "is",
     94                  "TBD"
     95               ],
     96               [
     97                  "result",
     98                  "IAccessible::get_accSelection()",
     99                  "is",
    100                  "TBD"
    101               ]
    102            ],
    103            "MSAA" : [
    104               [
    105                  "property",
    106                  "role",
    107                  "is",
    108                  "ROLE_SYSTEM_TABLE"
    109               ]
    110            ],
    111            "UIA" : [
    112               [
    113                  "property",
    114                  "ControlType",
    115                  "is",
    116                  "DataGrid"
    117               ],
    118               [
    119                  "property",
    120                  "Control Pattern",
    121                  "is",
    122                  "Selection"
    123               ]
    124            ]
    125         },
    126         "title" : "step 1",
    127         "type" : "test"
    128      }
    129   ],
    130   "title" : "grid"
    131 }
    132 
    133    ) ;
    134    </script>
    135  </head>
    136  <body>
    137  <p>This test examines the ARIA properties for grid.</p>
    138    <div role='grid' id='test'>
    139    <div role='row' id='headerrow'>
    140      <div role='columnheader' id='colheader1'>content</div>
    141      <div role='columnheader' id='colheader2'>content</div>
    142    </div>
    143    <div role='row'>
    144      <div role='rowheader' id='rowheader1'>content</div>
    145      <div role='gridcell'>content</div>
    146    </div>
    147    <div role='row'>
    148      <div role='rowheader' id='rowheader2'>content</div>
    149      <div role='gridcell'>content</div>
    150    </div>
    151  </div>
    152 
    153  <div id="manualMode"></div>
    154  <div id="log"></div>
    155  <div id="ATTAmessages"></div>
    156  </body>
    157 </html>