https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1670b2d4abef8c10c3c39ad9a6b1d1f0761e7045 authored by Joshua Bell on 19 March 2018, 22:26:22 UTC
Web Platform Tests: add /interfaces/webaudio.idl and corresponding test
Tip revision: 1670b2d
aria-owns_may_need_manual_verification-manual.html
<!doctype html>
<html>
  <head>
    <title>aria-owns may need manual verification</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" : [
               [
                  "relation",
                  "RELATION_NODE_PARENT_OF",
                  "is",
                  "[owned1, owned2]"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXOwns",
                  "is",
                  "[owned1, owned2]"
               ]
            ],
            "IAccessible2" : [
               [
                  "relation",
                  "IA2_RELATION_NODE_PARENT_OF",
                  "is",
                  "[owned1, owned2]"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Children",
                  "is",
                  "[owned1, owned2]"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      },
      {
         "element" : "owned1",
         "test" : {
            "ATK" : [
               [
                  "relation",
                  "RELATION_NODE_CHILD_OF",
                  "is",
                  "[test]"
               ]
            ],
            "IAccessible2" : [
               [
                  "relation",
                  "IA2_RELATION_NODE_CHILD_OF",
                  "is",
                  "[test]"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Parent",
                  "is",
                  "test"
               ]
            ]
         },
         "title" : "step 2",
         "type" : "test"
      },
      {
         "element" : "owned2",
         "test" : {
            "ATK" : [
               [
                  "relation",
                  "RELATION_NODE_CHILD_OF",
                  "is",
                  "[test]"
               ]
            ],
            "IAccessible2" : [
               [
                  "relation",
                  "IA2_RELATION_NODE_CHILD_OF",
                  "is",
                  "[test]"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Parent",
                  "is",
                  "test"
               ]
            ]
         },
         "title" : "step 3",
         "type" : "test"
      }
   ],
   "title" : "aria-owns may need manual verification"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for aria-owns may need manual verification.</p>
    <div role='group' id='test' aria-owns='owned1 owned2'>content</div>
  <div role='group' id='owned1'>content</div>
  <div role='group' id='owned2'>content</div>

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