Revision 859e67ce666775ccd471e4693d85d4e90989e270 authored by Bernie Thompson on 29 March 2018, 17:39:39 UTC, committed by Chromium WPT Sync on 29 March 2018, 17:39:39 UTC
BUG=chromium:825100
TEST=None

This reverts commit f2d2fe87028de36a489f7db3f5fb28da2e9d9b2b.

Change-Id: I01e5962e0b52ad63feca36513db19253a5ade530
1 parent a149250
Raw File
graphics-document_on_svg_element-manual.html
<!doctype html>
<html>
  <head>
    <title>graphics-document 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_DOCUMENT_FRAME"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:graphics-document"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXGroup"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXDocument"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "document"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_DOCUMENT"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:graphics-document"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_READONLY"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Document"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "graphics-document on SVG element"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for graphics-document on SVG element.</p>
    <svg xmlns="http://www.w3.org/2000/svg" id="test" role="graphics-document">
    <g 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