frontend/.pnpm-store/v3/files/d0/b3e1f731f8c6363dce04c373a45f505e0f27e0f5a9b357396f38eea4020b392daa236cd864a2c0f0e2d174ac676590b635f12efbaa2316015dad7888d92b27

10 lines
306 B
Plaintext

// developer.mozilla.org/en/CSS/background-size
Modernizr.testStyles( '#modernizr{background-size:cover}', function( elem ) {
var style = window.getComputedStyle ?
window.getComputedStyle( elem, null )
: elem.currentStyle;
Modernizr.addTest( 'bgsizecover', style.backgroundSize == 'cover' );
});