tor-browser

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

option_selected_undefined-manual.html (3230B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>option selected undefined</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_ITEM"
     25               ],
     26               [
     27                  "property",
     28                  "states",
     29                  "doesNotContain",
     30                  "STATE_SELECTED"
     31               ],
     32               [
     33                  "property",
     34                  "states",
     35                  "contains",
     36                  "STATE_SELECTABLE"
     37               ]
     38            ],
     39            "AXAPI" : [
     40               [
     41                  "property",
     42                  "AXRole",
     43                  "is",
     44                  "AXStaticText"
     45               ],
     46               [
     47                  "property",
     48                  "AXSubrole",
     49                  "is",
     50                  "<nil>"
     51               ],
     52               [
     53                  "property",
     54                  "AXRoleDescription",
     55                  "is",
     56                  "text"
     57               ],
     58               [
     59                  "property",
     60                  "AXSelected",
     61                  "is",
     62                  "false"
     63               ]
     64            ],
     65            "MSAA" : [
     66               [
     67                  "property",
     68                  "role",
     69                  "is",
     70                  "ROLE_SYSTEM_LISTITEM"
     71               ],
     72               [
     73                  "property",
     74                  "states",
     75                  "doesNotContain",
     76                  "STATE_SYSTEM_SELECTED"
     77               ],
     78               [
     79                  "property",
     80                  "states",
     81                  "contains",
     82                  "STATE_SYSTEM_SELECTABLE"
     83               ]
     84            ],
     85            "UIA" : [
     86               [
     87                  "property",
     88                  "ControlType",
     89                  "is",
     90                  "ListItem"
     91               ],
     92               [
     93                  "property",
     94                  "interfaces",
     95                  "contains",
     96                  "Invoke"
     97               ],
     98               [
     99                  "property",
    100                  "ControlPatterns",
    101                  "doesNotContain",
    102                  "SelectionItem"
    103               ]
    104            ]
    105         },
    106         "title" : "step 1",
    107         "type" : "test"
    108      }
    109   ],
    110   "title" : "option selected undefined"
    111 }
    112 
    113    ) ;
    114    </script>
    115  </head>
    116  <body>
    117  <p>This test examines the ARIA properties for option selected undefined.</p>
    118    <div role="listbox">
    119   <div role="option" id="test">
    120   Fish
    121   </div>
    122   <div role="option">
    123   beef
    124   </div>
    125  </div>
    126 
    127  <div id="manualMode"></div>
    128  <div id="log"></div>
    129  <div id="ATTAmessages"></div>
    130  </body>
    131 </html>