summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/core-aam/aria-orientation_undefined-manual.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/core-aam/aria-orientation_undefined-manual.html
parentInitial commit. (diff)
downloadthunderbird-upstream.tar.xz
thunderbird-upstream.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/core-aam/aria-orientation_undefined-manual.html')
-rw-r--r--testing/web-platform/tests/core-aam/aria-orientation_undefined-manual.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/testing/web-platform/tests/core-aam/aria-orientation_undefined-manual.html b/testing/web-platform/tests/core-aam/aria-orientation_undefined-manual.html
new file mode 100644
index 0000000000..21a7e16952
--- /dev/null
+++ b/testing/web-platform/tests/core-aam/aria-orientation_undefined-manual.html
@@ -0,0 +1,60 @@
+<!doctype html>
+<html>
+ <head>
+ <title>aria-orientation=undefined</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",
+ "states",
+ "doesNotContain",
+ "STATE_VERTICAL"
+ ],
+ [
+ "property",
+ "states",
+ "doesNotContain",
+ "STATE_HORIZONTAL"
+ ]
+ ],
+ "AXAPI" : [
+ [
+ "property",
+ "AXOrientation",
+ "is",
+ "AXUnknownOrientation"
+ ]
+ ]
+ },
+ "title" : "step 1",
+ "type" : "test"
+ }
+ ],
+ "title" : "aria-orientation=undefined"
+}
+
+ ) ;
+ </script>
+ </head>
+ <body>
+ <p>This test examines the ARIA properties for aria-orientation=undefined.</p>
+ <div role='radiogroup' id='test' aria-orientation='undefined'>content</div>
+
+ <div id="manualMode"></div>
+ <div id="log"></div>
+ <div id="ATTAmessages"></div>
+ </body>
+</html>