https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3fefc102d977b933ce97709acf8397c91d1fb0d9 authored by joysyu@google.com on 01 September 2017, 00:16:13 UTC
Hide relatively positioned layers in collapsed columns
Tip revision: 3fefc10
cell_aria-colspan_2_on_div-manual.html
<!doctype html>
<html>
  <head>
    <title>cell aria-colspan 2 on div</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_CELL"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "colspan:2"
               ],
               [
                  "result",
                  "atk_table_cell_get_row_column_span()",
                  "contains",
                  "column_span=2"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXCell"
               ],
               [
                  "property",
                  "AXColumnIndexRange.length",
                  "is",
                  "2"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_CELL"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "colspan:2"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "IAccessibleTableCell"
               ],
               [
                  "MSAA",
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_CELL"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Control Type",
                  "is",
                  "TableItem"
               ],
               [
                  "property",
                  "TableItem.ColumnSpan",
                  "is",
                  "2"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "cell aria-colspan 2 on div"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for cell aria-colspan 2 on div.</p>
    <div role="table">
    <div role="row">
       <div id="test" role="cell" aria-colspan="2">test cell</div>
    </div>
  </div>

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

back to top