mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
16 lines
478 B
JavaScript
16 lines
478 B
JavaScript
/*!
|
|
{
|
|
"name": "Background Size",
|
|
"property": "backgroundsize",
|
|
"tags": ["css"],
|
|
"knownBugs": ["This will false positive in Opera Mini - https://github.com/Modernizr/Modernizr/issues/396"],
|
|
"notes": [{
|
|
"name": "Related Issue",
|
|
"href": "https://github.com/Modernizr/Modernizr/issues/396"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('backgroundsize', testAllProps('backgroundSize', '100%', true));
|
|
});
|