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-30.4.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-30.4.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-30.3.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-30.2.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-30.2.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-30.1.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-30.0.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.15.3 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.15.2 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.15.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.15.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.14.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.13.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.12.1 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.12.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.11.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.10.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.9.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.8.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js
govuk_publishing_components-29.7.0 node_modules/axe-core/lib/commons/color/get-own-background-color.js