https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a3f92983c1ebd7e625aac08e6b5a78b05f424feb authored by Corentin Wallez on 03 December 2018, 10:18:30 UTC
Revert "Enforce active lifetime of XRFrame objects"
Tip revision: a3f9298
button_haspopup_menu-manual.html
<!doctype html>
<html>
  <head>
    <title>button haspopup menu</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_PUSH_BUTTON"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "haspopup:menu"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_HAS_POPUP"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXPopUpButton"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "pop up button"
               ],
               [
                  "property",
                  "actions",
                  "contains",
                  "AXShowMenu"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_PUSHBUTTON"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "haspopup:menu"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_PUSHBUTTON"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_HASPOPUP"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "IUIAutomationElement.ControlType",
                  "is",
                  "Button"
               ],
               [
                  "property",
                  "controlPatterns",
                  "contains",
                  "ExpandCollapse"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "button haspopup menu"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for button haspopup menu.</p>
    <div id="test" role="button" aria-haspopup="menu">
  OK
  </div>
  <ul tabindex="0" aria-activedescendant="foo" role="menu">
    <li id="foo" tabindex="-1" role="menuitem">sprouts</li>
    <li tabindex="-1" role="menuitem">cucumbers</li>
  </ul>



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