https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8c6df8f2518e0d04d7814df6fd2d6600e613a9ab authored by Emilio Cobos Álvarez on 09 April 2018, 21:02:15 UTC
Tests for non-functional :host selector.
Tip revision: 8c6df8f
name_radio-title-manual.html
<!doctype html>
<html>
  <head>
    <title>Name radio-title</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",
                  "foo"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXDescription",
                  "is",
                  "foo"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "accName",
                  "is",
                  "foo"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Name",
                  "is",
                  "foo"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "Name radio-title"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for Name radio-title.</p>
    <input type="radio" id="test" title="foo" />

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