https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7da4e3fdf745990e52bb535e8e6d317cd21f2121 authored by Madeleine Barowsky on 21 December 2018, 02:41:02 UTC
WIP to add native YUV support for lossy WebP without alpha in the GPU rasterization non-OOPR case.
Tip revision: 7da4e3f
table_new-manual.html
<!doctype html>
<html>
  <head>
    <title>table NEW</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_TABLE"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:table"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "Table"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXTable"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "table"
               ],
               [
                  "property",
                  "AXColumnHeaderUIElements",
                  "is",
                  "[colheader1, colheader2]"
               ],
               [
                  "property",
                  "AXHeader",
                  "is",
                  "AXGroup"
               ],
               [
                  "property",
                  "AXRowHeaderUIElements",
                  "is",
                  "[rowheader1, rowheader2]"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:table"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "IAccessibleTable2"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_TABLE"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Table"
               ],
               [
                  "property",
                  "Control Pattern",
                  "is",
                  "Grid"
               ],
               [
                  "property",
                  "Control Pattern",
                  "is",
                  "Table"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "table NEW"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for table NEW.</p>
    <div role='table' id='test'>
    <div role='row' id='headerrow'>
      <div role='columnheader' id='colheader1'>content</div>
      <div role='columnheader' id='colheader2'>content</div>
    </div>
    <div role='row'>
      <div role='rowheader' id='rowheader1'>content</div>
      <div role='cell'>content</div>
    </div>
    <div role='row'>
      <div role='rowheader' id='rowheader2'>content</div>
      <div role='cell'>content</div>
    </div>
  </div>

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