summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/core-aam/menu-manual.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/core-aam/menu-manual.html')
-rw-r--r--testing/web-platform/tests/core-aam/menu-manual.html98
1 files changed, 98 insertions, 0 deletions
diff --git a/testing/web-platform/tests/core-aam/menu-manual.html b/testing/web-platform/tests/core-aam/menu-manual.html
new file mode 100644
index 0000000000..407bf26a2d
--- /dev/null
+++ b/testing/web-platform/tests/core-aam/menu-manual.html
@@ -0,0 +1,98 @@
+<!doctype html>
+<html>
+ <head>
+ <title>menu</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",
+ "role",
+ "is",
+ "ROLE_MENU"
+ ],
+ [
+ "property",
+ "interfaces",
+ "contains",
+ "Selection"
+ ]
+ ],
+ "AXAPI" : [
+ [
+ "property",
+ "AXRole",
+ "is",
+ "AXMenu"
+ ],
+ [
+ "property",
+ "AXSubrole",
+ "is",
+ "<nil>"
+ ]
+ ],
+ "IAccessible2" : [
+ [
+ "result",
+ "IAccessible::accSelect()",
+ "is",
+ "TBD"
+ ],
+ [
+ "result",
+ "IAccessible::get_accSelection()",
+ "is",
+ "TBD"
+ ]
+ ],
+ "MSAA" : [
+ [
+ "property",
+ "role",
+ "is",
+ "ROLE_SYSTEM_MENUPOPUP"
+ ]
+ ],
+ "UIA" : [
+ [
+ "property",
+ "ControlType",
+ "is",
+ "Menu"
+ ]
+ ]
+ },
+ "title" : "step 1",
+ "type" : "test"
+ }
+ ],
+ "title" : "menu"
+}
+
+ ) ;
+ </script>
+ </head>
+ <body>
+ <p>This test examines the ARIA properties for menu.</p>
+ <div role='menu' id='test'>
+ <div role='menuitemradio'>content</div>
+ </div>
+
+ <div id="manualMode"></div>
+ <div id="log"></div>
+ <div id="ATTAmessages"></div>
+ </body>
+</html>