mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-18 07:31:04 +00:00
17 lines
490 B
JavaScript
17 lines
490 B
JavaScript
/*!
|
|
{
|
|
"name": "CSS Transforms 3D",
|
|
"property": "csstransforms3d",
|
|
"caniuse": "transforms3d",
|
|
"tags": ["css"],
|
|
"warnings": [
|
|
"Chrome may occasionally fail this test on some systems; more info: https://bugs.chromium.org/p/chromium/issues/detail?id=129004"
|
|
]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps', 'test/css/supports'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('csstransforms3d', function() {
|
|
return !!testAllProps('perspective', '1px', true);
|
|
});
|
|
});
|