mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
17 lines
448 B
JavaScript
17 lines
448 B
JavaScript
/*!
|
|
{
|
|
"name": "CSS Object Fit",
|
|
"caniuse": "object-fit",
|
|
"property": "objectfit",
|
|
"tags": ["css"],
|
|
"builderAliases": ["css_objectfit"],
|
|
"notes": [{
|
|
"name": "Opera Article on Object Fit",
|
|
"href": "https://dev.opera.com/articles/css3-object-fit-object-position/"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
|
|
Modernizr.addTest('objectfit', !!prefixed('objectFit'), {aliases: ['object-fit']});
|
|
});
|