summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/core-aam/button_with_aria-haspopup_true-manual.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/core-aam/button_with_aria-haspopup_true-manual.html')
-rw-r--r--testing/web-platform/tests/core-aam/button_with_aria-haspopup_true-manual.html82
1 files changed, 82 insertions, 0 deletions
diff --git a/testing/web-platform/tests/core-aam/button_with_aria-haspopup_true-manual.html b/testing/web-platform/tests/core-aam/button_with_aria-haspopup_true-manual.html
new file mode 100644
index 0000000000..1a45b12b35
--- /dev/null
+++ b/testing/web-platform/tests/core-aam/button_with_aria-haspopup_true-manual.html
@@ -0,0 +1,82 @@
+<!doctype html>
+<html>
+ <head>
+ <title>button with aria-haspopup="true"</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_PUSH_BUTTON"
+ ]
+ ],
+ "AXAPI" : [
+ [
+ "property",
+ "AXRole",
+ "is",
+ "AXPopUpButton"
+ ],
+ [
+ "property",
+ "AXSubrole",
+ "is",
+ "<nil>"
+ ],
+ [
+ "property",
+ "actions",
+ "contains",
+ "AXShowMenu"
+ ]
+ ],
+ "MSAA" : [
+ [
+ "property",
+ "role",
+ "is",
+ "ROLE_SYSTEM_BUTTONMENU"
+ ]
+ ],
+ "UIA" : [
+ [
+ "property",
+ "ControlType",
+ "is",
+ "Button"
+ ]
+ ]
+ },
+ "title" : "step 1",
+ "type" : "test"
+ }
+ ],
+ "title" : "button with aria-haspopup=\"true\""
+}
+
+ ) ;
+ </script>
+ </head>
+ <body>
+ <p>This test examines the ARIA properties for button with aria-haspopup="true".</p>
+ <div role='button' id='test' aria-haspopup='true'>content</div>
+
+ <div id="manualMode"></div>
+ <div id="log"></div>
+ <div id="ATTAmessages"></div>
+ </body>
+</html>