https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ec12e6a1b356e9187730aa37398863004f4509ee authored by Douglas Creager on 19 October 2018, 12:57:35 UTC
NEL: Add test cases for redirects/cache
Tip revision: ec12e6a
grid_columnheader_readonly_false-manual.html
<!doctype html>
<html>
  <head>
    <title>grid columnheader readonly false</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",
                  "role",
                  "is",
                  "ROLE_COLUMN_HEADER"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_READ_ONLY"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXCell"
               ],
               [
                  "result",
                  "AXUIElementIsAttributeSettable(AXValue)",
                  "is",
                  "true"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_COLUMNHEADER"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "IA2_STATE_EDITABLE"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_COLUMNHEADER"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_SYSTEM_READONLY"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "HeaderItem"
               ],
               [
                  "property",
                  "Value.IsReadOnly",
                  "is",
                  "false"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "grid columnheader readonly false"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for grid columnheader readonly false.</p>
    <div role="grid">
    <div role="row">
       <div id="test" role="columnheader" aria-readonly="false">test cell</div>
    </div>
  </div>

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