can
Version:
MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.
10 lines (7 loc) • 306 B
JavaScript
// 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' );
});