https://github.com/web-platform-tests/wpt
Revision e3a20f32ed973ef4117a5900929dd89fb6a42f5c authored by mkwst@chromium.org on 20 June 2017, 13:56:45 UTC, committed by Chromium WPT Sync on 20 June 2017, 13:56:45 UTC
WIP: Don't land yet.

Bug: 607897
Change-Id: I03bf57a24da3a7479199d04a05c4487342af20ca
Reviewed-on: https://chromium-review.googlesource.com/541439
Cr-Commit-Position: refs/heads/master@{#480805}
WPT-Export-Revision: d1f6b2dc8fa27de8df93e8b7c4e9c4b419036ef5
1 parent d39b05b
Raw File
Tip revision: e3a20f32ed973ef4117a5900929dd89fb6a42f5c authored by mkwst@chromium.org on 20 June 2017, 13:56:45 UTC
Implement `Clear-Site-Data: documents`.
Tip revision: e3a20f3
searchbox_activedescendant-manual.html
<!doctype html>
<html>
  <head>
    <title>searchbox activedescendant</title>
    <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",
         "event" : "focus",
         "title" : "step 1",
         "type" : "event"
      },
      {
         "element" : "test",
         "test" : {
            "ATK" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_ENTRY"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SINGLE_LINE"
               ],
               [
                  "property",
                  "interfaces",
                  "contains",
                  "EditableText"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_FOCUSED"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_FOCUSABLE"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXTextField"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXSearchField"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "search text field"
               ],
               [
                  "property",
                  "AXFocused",
                  "is",
                  "false"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "text-input-type:search"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_TEXT"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_SYSTEM_FOCUSED"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_FOCUSABLE"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Control Type",
                  "is",
                  "Edit"
               ],
               [
                  "property",
                  "Localized Control Type",
                  "is",
                  "search box"
               ],
               [
                  "property",
                  "IUIAutomationElement.UIA_IsKeyboardFocusablePropertyId",
                  "is",
                  "true"
               ],
               [
                  "property",
                  "IUIAutomationElement.UIA_HasKeyboardFocusPropertyId",
                  "is",
                  "false"
               ]
            ]
         },
         "title" : "step 2",
         "type" : "test"
      },
      {
         "element" : "bob",
         "test" : {
            "ATK" : [
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_FOCUSED"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_FOCUSABLE"
               ],
               [
                  "event",
                  "type",
                  "is",
                  "object:state-changed:focused"
               ],
               [
                  "event",
                  "detail1",
                  "is",
                  "1"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXFocused",
                  "is",
                  "true"
               ],
               [
                  "result",
                  "AXUIElementIsAttributeSettable(AXFocused)",
                  "is",
                  "true"
               ],
               [
                  "event",
                  "type",
                  "is",
                  "AXFocusedUIElementChanged"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_FOCUSED"
               ],
               [
                  "property",
                  "states",
                  "contains",
                  "STATE_SYSTEM_FOCUSABLE"
               ],
               [
                  "event",
                  "type",
                  "is",
                  "EVENT_OBJECT_FOCUS"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "IUIAutomationElement.UIA_IsKeyboardFocusablePropertyId",
                  "is",
                  "true"
               ],
               [
                  "property",
                  "IUIAutomationElement.UIA_HasKeyboardFocusPropertyId",
                  "is",
                  "true"
               ],
               [
                  "event",
                  "type",
                  "is",
                  "UIA_AutomationFocusChangedEventId"
               ]
            ]
         },
         "title" : "step 3",
         "type" : "test"
      }
   ],
   "title" : "searchbox activedescendant"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for searchbox activedescendant.</p>
     <div id='test' tabindex="0" aria-activedescendant="bob" role='searchbox'>
     <div id='bob'>Hello world</div>
  </div>
 then role:searchbox, aria-activedescendant: bob

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

back to top