diff options
Diffstat (limited to 'testing/web-platform/tests/dpub-aam/doc-noteref-manual.html')
-rw-r--r-- | testing/web-platform/tests/dpub-aam/doc-noteref-manual.html | 132 |
1 files changed, 132 insertions, 0 deletions
diff --git a/testing/web-platform/tests/dpub-aam/doc-noteref-manual.html b/testing/web-platform/tests/dpub-aam/doc-noteref-manual.html new file mode 100644 index 0000000000..3f053bce69 --- /dev/null +++ b/testing/web-platform/tests/dpub-aam/doc-noteref-manual.html @@ -0,0 +1,132 @@ +<!doctype html> +<html> + <head> + <title>doc-noteref</title> + <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_LINK" + ], + [ + "property", + "objectAttributes", + "contains", + "xml-roles:doc-noteref" + ] + ], + "AXAPI" : [ + [ + "property", + "AXRole", + "is", + "AXLink" + ], + [ + "property", + "AXSubrole", + "is", + "<nil>" + ], + [ + "property", + "AXRoleDescription", + "is", + "link" + ] + ], + "IAccessible2" : [ + [ + "property", + "objectAttributes", + "contains", + "xml-roles:doc-noteref" + ], + [ + "property", + "interfaces", + "contains", + "IAccessibleHypertext2" + ] + ], + "MSAA" : [ + [ + "property", + "role", + "is", + "ROLE_SYSTEM_LINK" + ], + [ + "property", + "states", + "contains", + "STATE_LINKED" + ] + ], + "UIA" : [ + [ + "property", + "ControlType", + "is", + "Text" + ], + [ + "property", + "LocalizedControlType", + "is", + "noteref" + ] + ] + }, + "title" : "step 1", + "type" : "test" + }, + { + "element" : "child", + "test" : { + "MSAA" : [ + [ + "property", + "states", + "contains", + "STATE_LINKED" + ] + ], + "UIA" : [] + }, + "title" : "step 2", + "type" : "test" + } + ], + "title" : "doc-noteref" +} + + ) ; + </script> + </head> + <body> + <p>This test examines the ARIA properties for doc-noteref.</p> + <div role="doc-noteref" id="test"> + <div id="child">child 1</div> + </div> + + <div id="manualMode"></div> + <div id="log"></div> + <div id="ATTAmessages"></div> + </body> +</html> + |