roles.tentative.html (799B)
1 <!doctype html> 2 <html> 3 <head> 4 <title>New Core ARIA Role Verification Tests</title> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <script src="/resources/testdriver.js"></script> 8 <script src="/resources/testdriver-vendor.js"></script> 9 <script src="/resources/testdriver-actions.js"></script> 10 <script src="/wai-aria/scripts/aria-utils.js"></script> 11 </head> 12 <body> 13 14 <p>Tests new <a href="https://w3c.github.io/aria/#role_definitions">ARIA role definitions</a>. See comments for more info.</p> 15 16 <script> 17 18 /* 19 20 Tests simple role assignment: <div role="alert">x</div> 21 22 */ 23 24 AriaUtils.assignAndVerifyRolesByRoleNames([ 25 "sectionheader", // See ARIA pull #1931 26 "sectionfooter", // See ARIA pull #1931 27 ]); 28 29 </script> 30 </body> 31 </html>