mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
27 lines
906 B
JavaScript
27 lines
906 B
JavaScript
import { computeTextAlternative } from "./accessible-name-and-description.mjs";
|
|
import { hasAnyConcreteRoles } from "./util.mjs";
|
|
/**
|
|
* https://w3c.github.io/aria/#namefromprohibited
|
|
*/
|
|
|
|
function prohibitsNaming(node) {
|
|
return hasAnyConcreteRoles(node, ["caption", "code", "deletion", "emphasis", "generic", "insertion", "paragraph", "presentation", "strong", "subscript", "superscript"]);
|
|
}
|
|
/**
|
|
* implements https://w3c.github.io/accname/#mapping_additional_nd_name
|
|
* @param root
|
|
* @param [options]
|
|
* @parma [options.getComputedStyle] - mock window.getComputedStyle. Needs `content`, `display` and `visibility`
|
|
*/
|
|
|
|
|
|
export function computeAccessibleName(root) {
|
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
|
|
if (prohibitsNaming(root)) {
|
|
return "";
|
|
}
|
|
|
|
return computeTextAlternative(root, options);
|
|
}
|
|
//# sourceMappingURL=accessible-name.mjs.map
|