Sha256: 6327c2bb77a957133edf05c26f177f8ff69a9fd712934caf4691f95d247c26ca

Contents?: true

Size: 812 Bytes

Versions: 260

Compression:

Stored size: 812 Bytes

Contents

/* global matches */
/**
 * Check if a virtual node matches some attribute(s)
 *
 * Note: matches.attributes(vNode, matcher) can be indirectly used through
 * matches(vNode, { attributes: matcher })
 *
 * Example:
 * ```js
 * matches.attributes(vNode, {
 *   'aria-live': 'assertive', // Simple string match
 *   'aria-expanded': /true|false/i, // either boolean, case insensitive
 * })
 * ```
 *
 * @deprecated HTMLElement is deprecated, use VirtualNode instead
 *
 * @param {HTMLElement|VirtualNode} vNode
 * @param {Object} Attribute matcher
 * @returns {Boolean}
 */
matches.attributes = function matchesAttributes(vNode, matcher) {
	if (!(vNode instanceof axe.AbstractVirtualNode)) {
		vNode = axe.utils.getNodeFromTree(vNode);
	}
	return matches.fromFunction(attrName => vNode.attr(attrName), matcher);
};

Version data entries

260 entries across 260 versions & 1 rubygems

Version Path
govuk_publishing_components-30.4.1 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-30.4.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-30.3.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-30.2.1 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-30.2.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-30.1.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-30.0.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.15.3 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.15.2 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.15.1 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.15.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.14.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.13.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.12.1 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.12.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.11.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.10.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.9.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.8.0 node_modules/axe-core/lib/commons/matches/attributes.js
govuk_publishing_components-29.7.0 node_modules/axe-core/lib/commons/matches/attributes.js