https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 12b6163dada31f7883839c25903e69566b9ef8b0 authored by Eugene Kim on 28 November 2018, 11:15:33 UTC
Change <area> element's style to display:none
Tip revision: 12b6163
doc-biblioref-manual.html
<!doctype html>
<html>
  <head>
    <title>doc-biblioref</title>
    <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-biblioref"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXLink"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "link"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:doc-biblioref"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "IAccessibleHypertext2"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_LINK"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_LINKED"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Text"
               ],
               [
                  "property",
                  "LocalizedControlType",
                  "is",
                  "biblioref"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      },
      {
         "element" : "child",
         "test" : {
            "MSAA" : [
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_LINKED"
               ]
            ],
            "UIA" : []
         },
         "title" : "step 2",
         "type" : "test"
      }
   ],
   "title" : "doc-biblioref"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for doc-biblioref.</p>
    <div role="doc-biblioref" 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