Revision d3cec900217a525b6da759c9194838632f0bf27d authored by Yutaka Hirano on 27 March 2018, 06:25:56 UTC, committed by Yutaka Hirano on 27 March 2018, 06:25:56 UTC
1 parent 6e2ca77
Raw File
aria-dropeffect_copy-manual.html
<!doctype html>
<html>
  <head>
    <title>aria-dropeffect=copy</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",
                  "objectAttributes",
                  "contains",
                  "dropeffect:copy"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXDropEffects",
                  "is",
                  "[copy]"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "dropeffect:copy"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "AriaProperties.dropeffect",
                  "is",
                  "copy"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "aria-dropeffect=copy"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for aria-dropeffect=copy.</p>
    <div role='group' id='test' aria-dropeffect='copy'>content</div>

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