https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 948619e9aa2e43a6ca81d3bfc78669a721207523 authored by Philip Jägenstedt on 12 November 2018, 21:22:18 UTC
Find manifest for download by tags instead of commits
Tip revision: 948619e
aria-modal_false_new-manual.html
<!doctype html>
<html>
  <head>
    <title>aria-modal=false NEW</title>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
    <link rel="stylesheet" href="/wai-aria/scripts/manual.css">
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="/wai-aria/scripts/ATTAcomm.js"></script>
    <script>
    setup({explicit_timeout: true, explicit_done: true });

    var theTest = new ATTAcomm(
    {
   "steps" : [
      {
         "element" : "test",
         "test" : {
            "ATK" : [
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_MODAL"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "IA2_STATE_MODAL"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Window.IsModal",
                  "is",
                  "false"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      },
      {
         "element" : "group",
         "test" : {
            "AXAPI" : [
               [
                  "property",
                  "accessible",
                  "is",
                  "true"
               ]
            ]
         },
         "title" : "step 2",
         "type" : "test"
      }
   ],
   "title" : "aria-modal=false NEW"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for aria-modal=false NEW.</p>
    <div role='group' id='group'>content</div>
  <div role='dialog' id='test' aria-modal='false'>content</div>

  <div id="manualMode"></div>
  <div id="log"></div>
  <div id="ATTAmessages"></div>
  </body>
</html>
back to top