tor-browser

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

listbox_busy_false-manual.html (3028B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>listbox 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_LIST_BOX"
     25               ],
     26               [
     27                  "property",
     28                  "interfaces",
     29                  "contains",
     30                  "Selection"
     31               ],
     32               [
     33                  "result",
     34                  "atk_selection_clear_selection()",
     35                  "is",
     36                  "false"
     37               ],
     38               [
     39                  "property",
     40                  "states",
     41                  "doesNotContain",
     42                  "STATE_BUSY"
     43               ]
     44            ],
     45            "AXAPI" : [
     46               [
     47                  "property",
     48                  "AXRole",
     49                  "is",
     50                  "AXList"
     51               ],
     52               [
     53                  "property",
     54                  "AXSubrole",
     55                  "is",
     56                  "<nil>"
     57               ],
     58               [
     59                  "property",
     60                  "AXRoleDescription",
     61                  "is",
     62                  "list"
     63               ],
     64               [
     65                  "property",
     66                  "AXElementBusy",
     67                  "is",
     68                  "false"
     69               ]
     70            ],
     71            "MSAA" : [
     72               [
     73                  "property",
     74                  "role",
     75                  "is",
     76                  "ROLE_SYSTEM_LISTBOX"
     77               ],
     78               [
     79                  "property",
     80                  "states",
     81                  "doesNotContain",
     82                  "STATE_SYSTEM_BUSY"
     83               ]
     84            ],
     85            "UIA" : [
     86               [
     87                  "property",
     88                  "ControlType",
     89                  "is",
     90                  "List"
     91               ],
     92               [
     93                  "result",
     94                  "AriaProperties.busy",
     95                  "is",
     96                  "false"
     97               ]
     98            ]
     99         },
    100         "title" : "step 1",
    101         "type" : "test"
    102      }
    103   ],
    104   "title" : "listbox busy false"
    105 }
    106 
    107    ) ;
    108    </script>
    109  </head>
    110  <body>
    111  <p>This test examines the ARIA properties for listbox busy false.</p>
    112    <ul role="listbox" aria-busy="false" id="test">
    113       <li role="option">option 1</li>
    114       <li role="option">option 2</li>
    115  </ul>
    116 
    117  <div id="manualMode"></div>
    118  <div id="log"></div>
    119  <div id="ATTAmessages"></div>
    120  </body>
    121 </html>