https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 10a0d21c5403e48ddb5372916f76c34b462e18da authored by Philip Jägenstedt on 29 March 2018, 09:12:14 UTC
Invert (fix) the order of `wpt make-hosts-file` instructions
Tip revision: 10a0d21
name_heading-combobox-focusable-alternative-manual.html
<!doctype html>
<html>
  <head>
    <title>Name  heading-combobox-focusable-alternative</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",
                  "name",
                  "is",
                  "Country of origin: United States"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXDescription",
                  "is",
                  "Country of origin: United States"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "accName",
                  "is",
                  "Country of origin: United States"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Name",
                  "is",
                  "Country of origin: United States"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "Name  heading-combobox-focusable-alternative"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for Name  heading-combobox-focusable-alternative.</p>
    <h2 id="test">
  Country of origin:
  <input role="combobox" type="text" title="Choose your country." value="United States">
  </h2>

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