diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/wai-aria/manual/none-manual.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/wai-aria/manual/none-manual.html')
-rw-r--r-- | testing/web-platform/tests/wai-aria/manual/none-manual.html | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/testing/web-platform/tests/wai-aria/manual/none-manual.html b/testing/web-platform/tests/wai-aria/manual/none-manual.html new file mode 100644 index 0000000000..ded346faa6 --- /dev/null +++ b/testing/web-platform/tests/wai-aria/manual/none-manual.html @@ -0,0 +1,78 @@ +<!doctype html> +<html> + <head> + <title>none</title> + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> + <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", + "accessible", + "is", + "false" + ] + ], + "AXAPI" : [ + [ + "property", + "accessible", + "is", + "false" + ] + ], + "IAccessible2" : [ + [ + "property", + "accessible", + "is", + "false" + ] + ], + "MSAA" : [ + [ + "property", + "accessible", + "is", + "false" + ] + ], + "UIA" : [ + [ + "property", + "accessible", + "is", + "false" + ] + ] + }, + "title" : "step 1", + "type" : "test" + } + ], + "title" : "none" +} + + ) ; + </script> + </head> + <body> + <p>This test examines the ARIA properties for none.</p> + <img id='test' role='none' src="foo.jpg" alt="footest"/> + + <div id="manualMode"></div> + <div id="log"></div> + <div id="ATTAmessages"></div> + </body> +</html> |