https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0c93c0877c816f3b565eaaab7987e9c131475c1c authored by James Graham on 12 April 2018, 12:48:29 UTC
Use version-specific prefs files when running Firefox
Tip revision: 0c93c08
doc-epilogue-manual.html
<!doctype html>
<html>
  <head>
    <title>doc-epilogue</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_LANDMARK"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:doc-epilogue"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXGroup"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXLandmarkRegion"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "region"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:doc-epilogue"
               ],
               [
                  "property",
                  "role",
                  "is",
                  "IA2_ROLE_LANDMARK"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Text"
               ],
               [
                  "property",
                  "LocalizedControlType",
                  "is",
                  "epilogue"
               ],
               [
                  "property",
                  "landmarkType",
                  "is",
                  "Custom"
               ],
               [
                  "property",
                  "LocalizedLandmarkType",
                  "is",
                  "epilogue"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "doc-epilogue"
}

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

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

back to top