get-roles-with-name-from-contents.js 528 B

123456789101112131415
  1. import getAriaRolesSupportingNameFromContent from '../standards/get-aria-roles-supporting-name-from-content';
  2. /**
  3. * Get the roles that get name from the element's contents
  4. * @method getRolesWithNameFromContents
  5. * @memberof axe.commons.aria
  6. * @instance
  7. * @deprecated use standards/get-aria-roles-supporting-name-from-content
  8. * @return {Array} Array of roles that match the type
  9. */
  10. function getRolesWithNameFromContents() {
  11. return getAriaRolesSupportingNameFromContent();
  12. }
  13. export default getRolesWithNameFromContents;