https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3bacf4115fd29c0cf9962d264f3cf1f9b0a04708 authored by Sriram on 23 January 2018, 13:38:05 UTC
Upstream track-cue-rendering-horizontal.html
Tip revision: 3bacf41
separator_unfocusable_valuetext-manual.html
<!doctype html>
<html>
  <head>
    <title>separator unfocusable 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",
                  "doesNotContain",
                  "valuetext:Bonaire"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXSplitter"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "<nil>"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "splitter"
               ],
               [
                  "property",
                  "AXValueDescription",
                  "isNot",
                  "Bonaire"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "doesNotContain",
                  "valuetext:Bonaire"
               ],
               [
                  "property",
                  "value",
                  "isNot",
                  "Bonaire"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_SEPARATOR"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Separator"
               ],
               [
                  "property",
                  "controlPatterns",
                  "doesNotContain",
                  "RangeValue"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "separator unfocusable valuetext"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for separator unfocusable valuetext.</p>
    <div 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