https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ea1a9c736686a73256cd23b5531cd10f123ad468 authored by kritisingh1 on 15 March 2018, 16:30:55 UTC
updating changes
Tip revision: ea1a9c7
doc-glossref-manual.html
<!doctype html>
<html>
  <head>
    <title>doc-glossref</title>
    <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_LINK"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:doc-glossref"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXLink"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "link"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:doc-glossref"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "IAccessibleHypertext2"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_LINK"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_LINKED"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Text"
               ],
               [
                  "property",
                  "LocalizedControlType",
                  "is",
                  "glossref"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      },
      {
         "element" : "child",
         "test" : {
            "MSAA" : [
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_LINKED"
               ]
            ],
            "UIA" : []
         },
         "title" : "step 2",
         "type" : "test"
      }
   ],
   "title" : "doc-glossref"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for doc-glossref.</p>
    <div role="doc-glossref" id="test">
      <div id="child">child 1</div>
  </div>

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

back to top