https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 259d0612af038d14f2cd889a14a3adb6c9e96d96 authored by Josh Matthews on 23 December 2018, 05:25:51 UTC
Claim to support testdriver in servodriver
Tip revision: 259d061
include_element_referenced_by_global_aria-errormessage_new-manual.html
<!doctype html>
<html>
  <head>
    <title>Include element referenced by global aria-errormessage NEW</title>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
    <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",
                  "accessible",
                  "is",
                  "true"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "accessible",
                  "is",
                  "true"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "accessible",
                  "is",
                  "true"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "accessible",
                  "is",
                  "true"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "Include element referenced by global aria-errormessage NEW"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for Include element referenced by global aria-errormessage NEW.</p>
    <div role='group' aria-errormessage='test' aria-invalid='true'>content</div>
  <div id='test'>hello world</div>

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