https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c206aaefd6d927d3f0957e0dfe2e8e6bceefd907 authored by Marcos Cáceres on 09 May 2018, 07:37:54 UTC
PaymentCurrencyAmount.currencySystem removed from spec
Tip revision: c206aae
radio-manual.html
<!doctype html>
<html>
  <head>
    <title>radio</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_RADIO_BUTTON"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXRadioButton"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "radio button"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_RADIOBUTTON"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "RadioButton"
               ],
               [
                  "property",
                  "Control Pattern",
                  "is",
                  "Toggle"
               ],
               [
                  "property",
                  "Control Pattern",
                  "is",
                  "SelectionItem"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "radio"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for radio.</p>
    <div role='radio' id='test'>content</div>

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