https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ce1ce6065b70a59939b184582587b7578da06b72 authored by Chris Nardi on 07 April 2018, 03:56:07 UTC
Update serialization of timing functions
Tip revision: ce1ce60
graphics-object_on_svg_element-manual.html
<!doctype html>
<html>
  <head>
    <title>graphics-object on SVG element</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_PANEL"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:graphics-object"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXGroup"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "group"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_GROUPING"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:graphics-object"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Group"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "graphics-object on SVG element"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for graphics-object on SVG element.</p>
    <svg xmlns="http://www.w3.org/2000/svg" role="graphics-document">
    <g id="test" role="graphics-object" aria-label="door">
      <rect fill="darkKhaki" stroke="#632" width="50" height="90" />
      <circle fill="gray" stroke="#444" stroke-width="0.7" cx="10" cy="50" r="4" />
    </g>
  </svg>

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