| <!doctype html> |
| <html> |
| <head> |
| <title>feed</title> |
| <link rel="stylesheet" href="/resources/testharness.css"> |
| <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_PANEL" |
| ], |
| [ |
| "property", |
| "objectAttributes", |
| "contains", |
| "xml-roles:feed" |
| ] |
| ], |
| "AXAPI" : [ |
| [ |
| "property", |
| "AXRole", |
| "is", |
| "AXGroup" |
| ], |
| [ |
| "property", |
| "AXSubrole", |
| "is", |
| "AXApplicationGroup" |
| ], |
| [ |
| "property", |
| "AXRoleDescription", |
| "is", |
| "feed" |
| ] |
| ], |
| "IAccessible2" : [ |
| [ |
| "property", |
| "objectAttributes", |
| "contains", |
| "xml-roles:feed" |
| ] |
| ], |
| "MSAA" : [ |
| [ |
| "property", |
| "role", |
| "is", |
| "ROLE_SYSTEM_GROUPING" |
| ] |
| ], |
| "UIA" : [ |
| [ |
| "property", |
| "Control Type", |
| "is", |
| "Group" |
| ], |
| [ |
| "property", |
| "Localized Control Type", |
| "is", |
| "feed" |
| ] |
| ] |
| }, |
| "title" : "step 1", |
| "type" : "test" |
| } |
| ], |
| "title" : "feed" |
| } |
| |
| ) ; |
| </script> |
| </head> |
| <body> |
| <p>This test examines the ARIA properties for feed.</p> |
| <section role="feed" id="test"> |
| <article>This is article 1</article> |
| <div role="article">This is article 2</div> |
| </section> |
| |
| <div id="manualMode"></div> |
| <div id="log"></div> |
| <div id="ATTAmessages"></div> |
| </body> |
| </html> |
| |