Sha256: 34eba520adeff766cc94868f019904c0a41fad966cf0422fc4bbe495803546c3

Contents?: true

Size: 1018 Bytes

Versions: 375

Compression:

Stored size: 1018 Bytes

Contents

/* global dom */

/**
 * Reduce an array of elements to only those that are below a 'floating' element.
 * @method reduceToElementsBelowFloating
 * @memberof axe.commons.dom
 * @instance
 * @param {Array} elements
 * @param {Element} targetNode
 * @returns {Array}
 */
dom.reduceToElementsBelowFloating = function(elements, targetNode) {
	var floatingPositions = ['fixed', 'sticky'],
		finalElements = [],
		targetFound = false,
		index,
		currentNode,
		style;

	// Filter out elements that are temporarily floating above the target
	for (index = 0; index < elements.length; ++index) {
		currentNode = elements[index];
		if (currentNode === targetNode) {
			targetFound = true;
		}

		style = window.getComputedStyle(currentNode);

		if (!targetFound && floatingPositions.indexOf(style.position) !== -1) {
			//Target was not found yet, so it must be under this floating thing (and will not always be under it)
			finalElements = [];
			continue;
		}

		finalElements.push(currentNode);
	}

	return finalElements;
};

Version data entries

375 entries across 375 versions & 1 rubygems

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