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
searchbox_multiline_unspecified-manual.html
<!doctype html>
<html>
  <head>
    <title>searchbox multiline unspecified</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_ENTRY"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SINGLE_LINE"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "EditableText"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXTextField"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXSearchField"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "search text field"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "xml-roles:search"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_TEXT"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Edit"
               ],
               [
                  "property",
                  "LocalizedControlType",
                  "is",
                  "search box"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "searchbox multiline unspecified"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for searchbox multiline unspecified.</p>
    <div id='test' role='searchbox' contenteditable='true'></div>

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