Revision 699383b151a45f102159d95862096a10528c865f authored by Jinho Bang on 20 April 2018, 14:06:41 UTC, committed by Chromium WPT Sync on 20 April 2018, 14:06:41 UTC
Related spec change:
  https://github.com/w3c/payment-handler/pull/293

Bug: 833535
Change-Id: Id7d0cad0f150a73e2932bd8f81f9e5650830a2c0
Reviewed-on: https://chromium-review.googlesource.com/1013660
Reviewed-by: Ganggui Tang <gogerald@chromium.org>
Commit-Queue: Jinho Bang <jinho.bang@samsung.com>
Cr-Commit-Position: refs/heads/master@{#552319}
1 parent 55d647f
Raw File
term_role-manual.html
<!doctype html>
<html>
  <head>
    <title>term role</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",
                  "role",
                  "is",
                  "ROLE_DESCRIPTION_TERM"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "Text"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "Hypertext"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXGroup"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXTerm"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "term"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_TERM"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "ROLE_SYSTEM_READONLY"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Text"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "term role"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for term role.</p>
    <div role="term" id='test' aria-describedby="dfn">
  w3c
  </div>
  <div role="definition" id="dfn">
  World Wide Web Consortium
  </div>


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