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