tor-browser

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

aria-colcount-manual.html (2305B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>aria-colcount</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                  "objectAttributes",
     23                  "contains",
     24                  "colcount:3"
     25               ],
     26               [
     27                  "result",
     28                  "atk_table_get_n_columns()",
     29                  "is",
     30                  "1"
     31               ]
     32            ],
     33            "AXAPI" : [
     34               [
     35                  "property",
     36                  "AXARIAColumnCount",
     37                  "is",
     38                  "3"
     39               ]
     40            ],
     41            "IAccessible2" : [
     42               [
     43                  "property",
     44                  "objectAttributes",
     45                  "contains",
     46                  "colcount:3"
     47               ]
     48            ],
     49            "UIA" : [
     50               [
     51                  "property",
     52                  "Grid.ColumnCount",
     53                  "is",
     54                  "3"
     55               ]
     56            ]
     57         },
     58         "title" : "step 1",
     59         "type" : "test"
     60      },
     61      {
     62         "element" : "cell",
     63         "test" : {
     64            "IAccessible2" : [
     65               [
     66                  "property",
     67                  "groupPosition",
     68                  "contains",
     69                  "similarItemsInGroup:3"
     70               ]
     71            ]
     72         },
     73         "title" : "step 2",
     74         "type" : "test"
     75      }
     76   ],
     77   "title" : "aria-colcount"
     78 }
     79 
     80    ) ;
     81    </script>
     82  </head>
     83  <body>
     84  <p>This test examines the ARIA properties for aria-colcount.</p>
     85    <div role='table' id='test' aria-colcount='3'>
     86    <div role='row'>
     87      <div role='cell' id='cell'>content</div>
     88    </div>
     89  </div>
     90 
     91  <div id="manualMode"></div>
     92  <div id="log"></div>
     93  <div id="ATTAmessages"></div>
     94  </body>
     95 </html>