Revision 9f72b689165309d4b959f3dbc724f18fe9a77111 authored by Mike West on 05 April 2018, 12:29:12 UTC, committed by Chromium WPT Sync on 05 April 2018, 12:29:12 UTC
This patch adjusts the `SecureContext` IDL attribute to take an argument,
as we need to restrict the relevant bits and pieces to secure contexts
iff a specific flag is set. We'll unfortunately need to keep that in place
until and unless we decide that we can reasonably remove an enterprise
opt-out.

Intent to Deprecate/Remove: https://groups.google.com/a/chromium.org/d/msg/blink-dev/ANnafFBhReY/1Xdr53KxBAAJ
Spec bug: https://github.com/whatwg/html/issues/3440

Bug: 588931
Cq-Include-Trybots: master.tryserver.chromium.linux:linux_layout_tests_layout_ng
Change-Id: I5bedd2ca6f420a88ddbcff65e4223fad224ac0a7
Reviewed-on: https://chromium-review.googlesource.com/982625
Reviewed-by: Yoav Weiss <yoav@yoav.ws>
Reviewed-by: Yuki Shiino <yukishiino@chromium.org>
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Commit-Queue: Mike West <mkwst@chromium.org>
Cr-Commit-Position: refs/heads/master@{#548391}
1 parent d725f2a
Raw File
searchbox_placeholder-manual.html
<!doctype html>
<html>
  <head>
    <title>searchbox placeholder</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",
                  "interfaces",
                  "contains",
                  "EditableText"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "placeholder-text:DD/MM/YYYY"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXTextField"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXSearchField"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "search text field"
               ],
               [
                  "property",
                  "AXPlaceholderValue",
                  "is",
                  "DD/MM/YYYY"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_TEXT"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "IA2_STATE_SINGLE_LINE"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "placeholder-text:DD/MM/YYYY"
               ],
               [
                  "property",
                  "objectAttributes",
                  "contains",
                  "text-input-type:search"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_TEXT"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Edit"
               ],
               [
                  "property",
                  "LocalizedControlType",
                  "is",
                  "search box"
               ],
               [
                  "result",
                  "AriaProperties.placeholder",
                  "is",
                  "DD/MM/YYYY"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "searchbox placeholder"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for searchbox placeholder.</p>
    <div contenteditable="true" role="searchbox" aria-placeholder="DD/MM/YYYY" id="test">
  "DD/MM/YYYY"
  </div>

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