tor-browser

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

aria-modal_false-manual.html (1910B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <title>aria-modal=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                  "states",
     23                  "doesNotContain",
     24                  "STATE_MODAL"
     25               ]
     26            ],
     27            "IAccessible2" : [
     28               [
     29                  "property",
     30                  "states",
     31                  "doesNotContain",
     32                  "IA2_STATE_MODAL"
     33               ]
     34            ],
     35            "UIA" : [
     36               [
     37                  "property",
     38                  "Window.IsModal",
     39                  "is",
     40                  "false"
     41               ]
     42            ]
     43         },
     44         "title" : "step 1",
     45         "type" : "test"
     46      },
     47      {
     48         "element" : "group",
     49         "test" : {
     50            "AXAPI" : [
     51               [
     52                  "property",
     53                  "accessible",
     54                  "is",
     55                  "true"
     56               ]
     57            ]
     58         },
     59         "title" : "step 2",
     60         "type" : "test"
     61      }
     62   ],
     63   "title" : "aria-modal=false"
     64 }
     65 
     66    ) ;
     67    </script>
     68  </head>
     69  <body>
     70  <p>This test examines the ARIA properties for aria-modal=false.</p>
     71    <div role='group' id='group'>content</div>
     72  <div role='dialog' id='test' aria-modal='false'>content</div>
     73 
     74  <div id="manualMode"></div>
     75  <div id="log"></div>
     76  <div id="ATTAmessages"></div>
     77  </body>
     78 </html>