tor-browser

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

form-unnamed-manual.html (2003B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>form</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    var theTest = new ATTAcomm(
     13    {
     14   "steps" : [
     15      {
     16         "element" : "test",
     17         "test" : {
     18            "ATK" : [
     19               [
     20                  "property",
     21                  "role",
     22                  "is",
     23                  "ROLE_SECTION"
     24               ]
     25            ],
     26            "AXAPI" : [
     27               [
     28                  "property",
     29                  "AXRole",
     30                  "is",
     31                  "AXGroup"
     32               ],
     33               [
     34                  "property",
     35                  "AXSubrole",
     36                  "is",
     37                  "<nil>"
     38               ]
     39            ],
     40            "IAccessible2" : [
     41               [
     42                  "property",
     43                  "role",
     44                  "is",
     45                  "IA2_ROLE_SECTION"
     46               ]
     47            ],
     48            "MSAA" : [
     49               [
     50                  "property",
     51                  "role",
     52                  "is",
     53                  "ROLE_SYSTEM_GROUPING"
     54               ]
     55            ],
     56            "UIA" : [
     57               [
     58                  "property",
     59                  "ControlType",
     60                  "is",
     61                  "Group"
     62               ]
     63            ]
     64         },
     65         "title" : "step 1",
     66         "type" : "test"
     67      }
     68   ],
     69   "title" : "unnamed form"
     70 }
     71 
     72    ) ;
     73    </script>
     74  </head>
     75  <body>
     76  <p>This test examines the ARIA properties for an unnamed form.</p>
     77    <div role='form' id='test'>content</div>
     78 
     79  <div id="manualMode"></div>
     80  <div id="log"></div>
     81  <div id="ATTAmessages"></div>
     82  </body>
     83 </html>