Revision e5478286b1bd4e84889619e4c75f017f6021a2d9 authored by Darren Shen on 12 April 2018, 11:59:24 UTC, committed by Chromium WPT Sync on 12 April 2018, 11:59:24 UTC
Introduces the <angle> data type.
Test fails because we compute offset-rotate to a pair rather than
'as specified'

had to rebaseline all the tests.

Bug: 820299
Change-Id: Ifdc192550b0b544b9887af80c259b3bfeede556b
Reviewed-on: https://chromium-review.googlesource.com/1003433
Commit-Queue: Darren Shen <shend@chromium.org>
Reviewed-by: nainar <nainar@chromium.org>
Cr-Commit-Position: refs/heads/master@{#550146}
1 parent 19a42b9
Raw File
dialog_modal_false-manual.html
<!doctype html>
<html>
  <head>
    <title>dialog modal false</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_DIALOG"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "STATE_MODAL"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXRole",
                  "is",
                  "AXGroup"
               ],
               [
                  "property",
                  "AXSubrole",
                  "is",
                  "AXApplicationDialog"
               ],
               [
                  "property",
                  "AXRoleDescription",
                  "is",
                  "web dialog"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_DIALOG"
               ],
               [
                  "property",
                  "states",
                  "doesNotContain",
                  "IA2_STATE_MODAL"
               ]
            ],
            "MSAA" : [
               [
                  "property",
                  "role",
                  "is",
                  "ROLE_SYSTEM_DIALOG"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "ControlType",
                  "is",
                  "Pane"
               ],
               [
                  "result",
                  "Window.isModal",
                  "is",
                  "false"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      },
      {
         "element" : "Test2",
         "test" : {
            "AXAPI" : [
               [
                  "property",
                  "accessible",
                  "is",
                  "true"
               ]
            ]
         },
         "title" : "step 2",
         "type" : "test"
      }
   ],
   "title" : "dialog modal false"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for dialog modal false.</p>
    <h1 id="Test2">Modal Dialog Box Test</h1>
  <div role="dialog" aria-modal="false" id="test">
    You have an error.
    <input type="button" value="ok"/>
  </div>

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