tor-browser

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

description_title-same-element-manual.html (1834B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>Description title-same-element</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                  "description",
     23                  "is",
     24                  "Description"
     25               ]
     26            ],
     27            "AXAPI" : [
     28               [
     29                  "property",
     30                  "AXHelp",
     31                  "is",
     32                  "Description"
     33               ]
     34            ],
     35            "IAccessible2" : [
     36               [
     37                  "property",
     38                  "accDescription",
     39                  "is",
     40                  "Description"
     41               ]
     42            ],
     43            "UIA" : [
     44               [
     45                  "property",
     46                  "Description",
     47                  "is",
     48                  "Description"
     49               ]
     50            ]
     51         },
     52         "title" : "step 1",
     53         "type" : "test"
     54      }
     55   ],
     56   "title" : "Description title-same-element"
     57 }
     58 
     59    ) ;
     60    </script>
     61  </head>
     62  <body>
     63  <p>This test examines the ARIA properties for Description title-same-element.</p>
     64    <div><input aria-label="Name" id="test" title="Title" aria-describedby="ID1" type="text"></div>
     65  <div id="ID1">Description</div>
     66 
     67  <div id="manualMode"></div>
     68  <div id="log"></div>
     69  <div id="ATTAmessages"></div>
     70  </body>
     71 </html>