https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 378530000a7140ccfc83c2df6ef4bb92543103db authored by Sandra Sun on 19 March 2018, 16:31:26 UTC
scroll-snap-align should specify inline and block.
Tip revision: 3785300
listbox_not_owned_by_or_child_of_combobox-manual.html
<!doctype html>
<html>
  <head>
    <title>listbox not owned by or child of combobox</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_LIST_BOX"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "Selection"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXList"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "list"
               ]
            ],
            "IAccessible2" : [
               [
                  "result",
                  "IAccessible::accSelect()",
                  "is",
                  "TBD"
               ],
               [
                  "result",
                  "IAccessible::get_accSelection()",
                  "is",
                  "TBD"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_LIST"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "List"
               ],
               [
                  "property",
                  "Control Pattern",
                  "is",
                  "Selection"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "listbox not owned by or child of combobox"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for listbox not owned by or child of combobox.</p>
    <div role='listbox' id='test'>
    <div role='option'>content</div>
  </div>

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