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-29.6.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.5.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.4.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.3.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.2.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.1.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.0.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.0.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.9.2 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.9.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.9.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.8.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.8.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.7.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.6.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.5.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.4.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.3.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.2.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-28.1.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js