https://github.com/web-platform-tests/wpt
Raw File
Tip revision: da25c99886fb1a85fcf5a138bb8f337761c5aa7f authored by Anne van Kesteren on 06 June 2018, 09:55:14 UTC
move service worker into resources too
Tip revision: da25c99
combobox_haspopup_true-manual.html
<!doctype html>
<html>
  <head>
    <title>combobox haspopup true</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_COMBO_BOX"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_EXPANDABLE"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_EXPANDED"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_HAS_POPUP"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "haspopup:true"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXComboBox"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "combo box"
               ],
               [
                  "property",
                  "AXExpanded",
                  "is",
                  "true"
               ],
               [
                  "property",
                  "actions",
                  "contains",
                  "AXShowMenu"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_COMBOBOX"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "haspopup:true"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_COMBOBOX"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_HASPOPUP"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_EXPANDED"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Combobox"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "ExpandCollapse pattern"
               ],
               [
                  "property",
                  "ExpandCollapse.ExpandCollapseState",
                  "is",
                  "Expanded"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "combobox haspopup true"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for combobox haspopup true.</p>
    <div aria-label="Tag" id="test" aria-haspopup="true" role="combobox" aria-expanded="true" aria-owns="owned_dialog">
    <input type="text" aria-autocomplete="list" aria-controls="owned_dialog" aria-activedescendant="selected_cell">
   <div role="radiogroup">
      <div role="radio" id="selected_radio" tabindex="-1">R1</div><div role="radio" tabindex="-1">R2</div>
   </div>
   <div role="button" tabindex="0">ok</div>


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