diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/accname/manual/name_file-label-embedded-spinbutton-manual.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/accname/manual/name_file-label-embedded-spinbutton-manual.html')
-rw-r--r-- | testing/web-platform/tests/accname/manual/name_file-label-embedded-spinbutton-manual.html | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/testing/web-platform/tests/accname/manual/name_file-label-embedded-spinbutton-manual.html b/testing/web-platform/tests/accname/manual/name_file-label-embedded-spinbutton-manual.html new file mode 100644 index 0000000000..1432e2fd24 --- /dev/null +++ b/testing/web-platform/tests/accname/manual/name_file-label-embedded-spinbutton-manual.html @@ -0,0 +1,72 @@ +<!doctype html> +<html> + <head> + <title>Name file-label-embedded-spinbutton</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", + "name", + "is", + "foo 5 baz" + ] + ], + "AXAPI" : [ + [ + "property", + "AXDescription", + "is", + "foo 5 baz" + ] + ], + "IAccessible2" : [ + [ + "property", + "accName", + "is", + "foo 5 baz" + ] + ], + "UIA" : [ + [ + "property", + "Name", + "is", + "foo 5 baz" + ] + ] + }, + "title" : "step 1", + "type" : "test" + } + ], + "title" : "Name file-label-embedded-spinbutton" +} + + ) ; + </script> + </head> + <body> + <p>This test examines the ARIA properties for Name file-label-embedded-spinbutton.</p> + <input type="file" id="test" /> + <label for="test">foo <input role="spinbutton" type="number" value="5" min="1" max="10" aria-valuenow="5" aria-valuemin="1" aria-valuemax="10"> baz + </label> + + <div id="manualMode"></div> + <div id="log"></div> + <div id="ATTAmessages"></div> + </body> +</html> |