diff --git a/accessible/tests/mochitest/attributes/test_xml-roles.html b/accessible/tests/mochitest/attributes/test_xml-roles.html index 346dcd3d6eda..5331d8df02cd 100644 --- a/accessible/tests/mochitest/attributes/test_xml-roles.html +++ b/accessible/tests/mochitest/attributes/test_xml-roles.html @@ -21,7 +21,12 @@ { // Some AT may look for this testAttrs("nav", {"xml-roles" : "navigation"}, true); + testAttrs("header", {"xml-roles" : "banner"}, true); + testAbsentAttrs("article_header", {"xml-roles" : "banner"}); + testAbsentAttrs("section_header", {"xml-roles" : "banner"}); testAttrs("footer", {"xml-roles" : "contentinfo"}, true); + testAbsentAttrs("article_footer", {"xml-roles" : "contentinfo"}); + testAbsentAttrs("section_footer", {"xml-roles" : "contentinfo"}); testAttrs("aside", {"xml-roles" : "complementary"}, true); testAttrs("section", {"xml-roles" : "region"}, true); testAttrs("main", {"xml-roles" : "main"}, true); // // ARIA override @@ -68,13 +73,27 @@ title="HTML5 article element should expose xml-roles:article object attribute"> Bug 761891 + + Bug 849624 +
+