tor-browser

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

aria-multiselectable_true-manual.html (1833B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>aria-multiselectable=true</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                  "states",
     23                  "contains",
     24                  "STATE_MULTISELECTABLE"
     25               ]
     26            ],
     27            "MSAA" : [
     28               [
     29                  "property",
     30                  "states",
     31                  "contains",
     32                  "STATE_SYSTEM_MULTISELECTABLE"
     33               ],
     34               [
     35                  "property",
     36                  "states",
     37                  "contains",
     38                  "STATE_SYSTEM_EXTSELECTABLE"
     39               ]
     40            ],
     41            "UIA" : [
     42               [
     43                  "property",
     44                  "Selection.CanSelectMultiple",
     45                  "is",
     46                  "true"
     47               ]
     48            ]
     49         },
     50         "title" : "step 1",
     51         "type" : "test"
     52      }
     53   ],
     54   "title" : "aria-multiselectable=true"
     55 }
     56 
     57    ) ;
     58    </script>
     59  </head>
     60  <body>
     61  <p>This test examines the ARIA properties for aria-multiselectable=true.</p>
     62    <div role='grid' id='test' aria-multiselectable='true'>
     63    <div role='row'>
     64      <div role='cell'>content</div>
     65    </div>
     66  </div>
     67 
     68  <div id="manualMode"></div>
     69  <div id="log"></div>
     70  <div id="ATTAmessages"></div>
     71  </body>
     72 </html>