https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ad4489b5132d14d65cdb52845d1c1f8694b9d4cc authored by Ms2ger on 13 March 2018, 16:12:19 UTC
Add tests for transferring ImageBitmap objects.
Tip revision: ad4489b
columnheader_aria-rowspan_2_on_th_html_rowspan_3-manual.html
<!doctype html>
<html>
  <head>
    <title>columnheader aria-rowspan 2 on th html rowspan 3</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_COLUMN_HEADER"
               ],
               [
                  "property",
                  "objectAttributes",
                  "doesNotContain",
                  "rowspan:2"
               ],
               [
                  "result",
                  "atk_table_cell_get_row_column_span()",
                  "doesNotContain",
                  "row_span=2"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXCell"
               ],
               [
                  "property",
                  "AXRowIndexRange.length",
                  "isNot",
                  "2"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_COLUMNHEADER"
               ],
               [
                  "property",
                  "objectAttributes",
                  "doesNotContain",
                  "rowspan:2"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_COLUMNHEADER"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "HeaderItem"
               ],
               [
                  "property",
                  "HeaderItem.RowSpan",
                  "isNot",
                  "2"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "columnheader aria-rowspan 2 on th html rowspan 3"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for columnheader aria-rowspan 2 on th html rowspan 3.</p>
    <table>
    <tr>
      <th id="test" role="columnheader" rowspan="3" aria-rowspan="2">test cell</th>
    </tr>
  </table>

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