https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0411120510cdf715e349d407a44b834c54662162 authored by Anne van Kesteren on 09 April 2018, 14:18:58 UTC
Test self.event in workers
Tip revision: 0411120
description_test_case_666-manual.html
<!doctype html>
<html>
  <head>
    <title>Description test case 666</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",
                  "description",
                  "is",
                  "foo"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXHelp",
                  "is",
                  "foo"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "accDescription",
                  "is",
                  "foo"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Description",
                  "is",
                  "foo"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "Description test case 666"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for Description test case 666.</p>
    <div>
    <img id="test" aria-describedby="ID1" src="test.png">
  </div>
  <div id="ID1" role="presentation">foo</div>

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