Revision 712117fd2551047eab06ca9133205d79ec24389d authored by Reza.Zakerinasab on 06 November 2017, 16:09:10 UTC, committed by Chromium WPT Sync on 06 November 2017, 16:09:10 UTC
This change removes the requirement of experimental canvas features flag
for CreateImageBitmap resize options.

Bug: 762559
Change-Id: Ifcf3a781f10f85a95ba36628b9dd76509181950b
1 parent b2cac4f
Raw File
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="/resources/testharness.css">
    <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