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
description_test_case_838-manual.html
<!doctype html>
<html>
  <head>
    <title>Description test case 838</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",
                  "description",
                  "is",
                  "foo"
               ]
            ],
            "AXAPI" : [
               [
                  "property",
                  "AXHelp",
                  "is",
                  "foo"
               ]
            ],
            "IAccessible2" : [
               [
                  "property",
                  "accDescription",
                  "is",
                  "foo"
               ]
            ],
            "UIA" : [
               [
                  "property",
                  "Description",
                  "is",
                  "foo"
               ]
            ]
         },
         "title" : "step 1",
         "type" : "test"
      }
   ],
   "title" : "Description test case 838"
}

    ) ;
    </script>
  </head>
  <body>
  <p>This test examines the ARIA properties for Description test case 838.</p>
    <img src="foo.jpg" id="test" alt="test" aria-describedby="t1">
  <div id="t1" style="visibility:hidden">foo</div>

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