Sha256: 6df347f4e4ebe811b75f8905e0125e23ce8ed749ce26722e214cb3d403c7132e

Contents?: true

Size: 563 Bytes

Versions: 271

Compression:

Stored size: 563 Bytes

Contents

/* global color */

/**
 * Returns the non-alpha-blended background color of an element
 *
 * @method getOwnBackgroundColor
 * @memberof axe.commons.color
 *
 * @param {Object} elmStyle style of the element
 * @return {Color}
 */
color.getOwnBackgroundColor = function getOwnBackgroundColor(elmStyle) {
	const bgColor = new color.Color();
	bgColor.parseRgbString(elmStyle.getPropertyValue('background-color'));

	if (bgColor.alpha !== 0) {
		const opacity = elmStyle.getPropertyValue('opacity');
		bgColor.alpha = bgColor.alpha * opacity;
	}

	return bgColor;
};

Version data entries

271 entries across 271 versions & 1 rubygems

Version Path
govuk_publishing_components-25.3.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-25.2.3 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-25.2.2 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-25.2.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-25.2.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-25.1.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-25.0.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.21.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.21.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.20.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.19.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.18.5 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.18.4 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.18.3 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.18.2 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.18.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.18.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.17.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.16.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-24.16.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js