Revision 7c998af1493f2690b300d7ec321bcc62bf428fca authored by Brandon Jones on 21 December 2018, 18:45:11 UTC, committed by Chromium WPT Sync on 21 December 2018, 18:45:11 UTC
Updated to the newer types described by the latest WebXR Device API spec updates.

Bug: 915050
Change-Id: I14f07f922ff2eee046664bd9a6ecf1cf4e954312
1 parent bc34f4b
Raw File
name_text-title-manual.html
<!doctype html>
<html>
  <head>
    <title>Name text-title</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",
                  "name",
                  "is",
                  "foo"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXDescription",
                  "is",
                  "foo"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "accName",
                  "is",
                  "foo"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Name",
                  "is",
                  "foo"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "Name text-title"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for Name text-title.</p>
    <input type="text" id="test" title="foo" />

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