mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
17 lines
447 B
JavaScript
17 lines
447 B
JavaScript
/*!
|
|
{
|
|
"name": "Border Radius",
|
|
"property": "borderradius",
|
|
"caniuse": "border-radius",
|
|
"polyfills": ["css3pie"],
|
|
"tags": ["css"],
|
|
"notes": [{
|
|
"name": "Comprehensive Compat Chart",
|
|
"href": "https://muddledramblings.com/table-of-css3-border-radius-compliance"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('borderradius', testAllProps('borderRadius', '0px', true));
|
|
});
|