
static.js.vendor.modernizr.feature-detects.css.chunit.js Maven / Gradle / Ivy
The newest version!
/*!
{
"name": "CSS Font ch Units",
"authors": ["Ron Waldon (@jokeyrhyme)"],
"property": "csschunit",
"tags": ["css"],
"notes": [{
"name": "W3C Spec",
"href": "http://www.w3.org/TR/css3-values/#font-relative-lengths"
}]
}
!*/
define(['Modernizr', 'modElem'], function(Modernizr, modElem) {
Modernizr.addTest('csschunit', function() {
var elemStyle = modElem.elem.style;
var supports;
try {
elemStyle.fontSize = '3ch';
supports = elemStyle.fontSize.indexOf('ch') !== -1;
} catch (e) {
supports = false;
}
return supports;
});
});
© 2015 - 2025 Weber Informatics LLC | Privacy Policy