https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f94d0b6525c39041274bbc6bf97b1761b96ebe1a authored by Darren Shen on 28 March 2018, 01:47:15 UTC
[css-typed-om] Support some text-decoration properties.
Tip revision: f94d0b6
switch_checked_mixed-manual.html
<!doctype html>
<html>
  <head>
    <title>switch checked mixed</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_TOGGLE_BUTTON"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_CHECKABLE"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_INDETERMINATE"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_CHECKED"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXCheckBox"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXSwitch"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "switch"
               ],
               [
                  "property",
                  "AXValue",
                  "is",
                  "0"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "IA2_ROLE_TOGGLE_BUTTON"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:switch"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "checkable:true"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Button"
               ],
               [
                  "property",
                  "LocalizedControlType",
                  "is",
                  "toggleswitch"
               ],
               [
                  "property",
                  "Toggle.ToggleState",
                  "is",
                  "Off"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "switch checked mixed"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for switch checked mixed.</p>
   <div id='test' role='switch' aria-checked='mixed' tabindex='0' class='switch'>power</div>

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