https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 44d012cd79c46f2bddec0fd324ed5e13de53878c authored by Brian Burg on 16 March 2018, 04:56:07 UTC
WebDriver: REGRESSION(86d68c3198c): missing 'sys' import in fixtures.py
Tip revision: 44d012c
separator_focusable_valuetext-manual.html
<!doctype html>
<html>
  <head>
    <title>separator focusable valuetext</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_SEPARATOR"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "valuetext:Bonaire"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "Value"
               ],
               [
                  "result",
                  "atk_value_get_minimum_value()",
                  "is",
                  "0"
               ],
               [
                  "result",
                  "atk_value_get_current_value()",
                  "is",
                  "50"
               ],
               [
                  "result",
                  "atk_value_get_maximum_value()",
                  "is",
                  "100"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXSplitter"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "splitter"
               ],
               [
                  "property",
                  "AXMinValue",
                  "is",
                  "0"
               ],
               [
                  "property",
                  "AXValue",
                  "is",
                  "50"
               ],
               [
                  "property",
                  "AXMaxValue",
                  "is",
                  "100"
               ],
               [
                  "property",
                  "AXValueDescription",
                  "is",
                  "Bonaire"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_SEPARATOR"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "AccessibleValue"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "valuetext:Bonaire"
               ],
               [
                  "property",
                  "minimumValue",
                  "is",
                  "0"
               ],
               [
                  "property",
                  "currentValue",
                  "is",
                  "50"
               ],
               [
                  "property",
                  "maximumValue",
                  "is",
                  "100"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_SEPARATOR"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Thumb"
               ],
               [
                  "property",
                  "controlPatterns",
                  "contains",
                  "RangeValue"
               ],
               [
                  "result",
                  "RangeValue.Minimum",
                  "is",
                  "0"
               ],
               [
                  "result",
                  "RangeValue.Value",
                  "is",
                  "50"
               ],
               [
                  "result",
                  "RangeValue.Maximum",
                  "is",
                  "100"
               ],
               [
                  "property",
                  "Value.Value",
                  "is",
                  "Bonaire"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "separator focusable valuetext"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for separator focusable valuetext.</p>
    <div tabindex="0" role="separator" aria-valuetext="Bonaire" id="test">
  Go Fish
  </div>

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