https://github.com/web-platform-tests/wpt
Revision e3a20f32ed973ef4117a5900929dd89fb6a42f5c authored by mkwst@chromium.org on 20 June 2017, 13:56:45 UTC, committed by Chromium WPT Sync on 20 June 2017, 13:56:45 UTC
WIP: Don't land yet.

Bug: 607897
Change-Id: I03bf57a24da3a7479199d04a05c4487342af20ca
Reviewed-on: https://chromium-review.googlesource.com/541439
Cr-Commit-Position: refs/heads/master@{#480805}
WPT-Export-Revision: d1f6b2dc8fa27de8df93e8b7c4e9c4b419036ef5
1 parent d39b05b
Raw File
Tip revision: e3a20f32ed973ef4117a5900929dd89fb6a42f5c authored by mkwst@chromium.org on 20 June 2017, 13:56:45 UTC
Implement `Clear-Site-Data: documents`.
Tip revision: e3a20f3
grid_rowcount_3-manual.html
<!doctype html>
<html>
  <head>
    <title>grid rowcount 3</title>
    <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_TABLE"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:grid"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "rowcount:3"
               ],
               [
                  "result",
                  "atk_table_get_n_rows()",
                  "is",
                  "3"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXTable"
               ],
               [
                  "property",
                  "AXARIARowCount",
                  "is",
                  "3"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_TABLE"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "IAccessibleTable2"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:grid"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "rowcount:3"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_TABLE"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:grid"
               ],
               [
                  "property",
                  "rowcount",
                  "is",
                  "3"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Control Type",
                  "is",
                  "DataGrid"
               ],
               [
                  "property",
                  "DataGrid.RowCount",
                  "is",
                  "3"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "grid rowcount 3"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for grid rowcount 3.</p>
    <div role='grid' id='test' aria-rowcount='3' aria-colcount='2'>
   <div role='row'>
      <span role='gridcell'>
        <button>hello</button>
     </span>
   </div>
  </div>

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

back to top