https://github.com/web-platform-tests/wpt
Revision 259d0612af038d14f2cd889a14a3adb6c9e96d96 authored by Josh Matthews on 23 December 2018, 05:25:51 UTC, committed by Josh Matthews on 26 December 2018, 14:25:28 UTC
1 parent cd31531
Raw File
Tip revision: 259d0612af038d14f2cd889a14a3adb6c9e96d96 authored by Josh Matthews on 23 December 2018, 05:25:51 UTC
Claim to support testdriver in servodriver
Tip revision: 259d061
menubar_busy_false-manual.html
<!doctype html>
<html>
  <head>
    <title>menubar busy false</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",
                  "role",
                  "is",
                  "ROLE_MENU_BAR"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:menubar"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_BUSY"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXMenuBar"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "menu bar"
               ],
               [
                  "property",
                  "AXElementBusy",
                  "is",
                  "false"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:menubar"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_MENUBAR"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_SYSTEM_BUSY"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "MenuBar"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "selection pattern"
               ],
               [
                  "property",
                  "AriaProperties.busy",
                  "is",
                  "false"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "menubar busy false"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for menubar busy false.</p>
    <div role="menubar" aria-busy="false" id="test">
    <div role="menuitem">File</div>
    <div role="menuitem">Edit</div>
    <div role="menuitem">View</div>
  </div>

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