mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 23:21:04 +00:00
17 lines
476 B
JavaScript
17 lines
476 B
JavaScript
/*!
|
|
{
|
|
"name": "Background Size Cover",
|
|
"property": "bgsizecover",
|
|
"tags": ["css"],
|
|
"builderAliases": ["css_backgroundsizecover"],
|
|
"notes": [{
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en/CSS/background-size"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
// Must test value, as this specifically tests the `cover` value
|
|
Modernizr.addTest('bgsizecover', testAllProps('backgroundSize', 'cover'));
|
|
});
|