You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
615 B
15 lines
615 B
11 years ago
|
// https://github.com/Modernizr/Modernizr/issues/572
|
||
|
// http://jsfiddle.net/glsee/JRmdq/8/
|
||
|
Modernizr.addTest('cssvminunit', function(){
|
||
|
var bool;
|
||
|
Modernizr.testStyles("#modernizr { width: 50vmin; }", function(elem, rule) {
|
||
|
var one_vw = window.innerWidth/100,
|
||
|
one_vh = window.innerHeight/100,
|
||
|
compWidth = parseInt((window.getComputedStyle ?
|
||
|
getComputedStyle(elem, null) :
|
||
|
elem.currentStyle)['width'],10);
|
||
|
bool = ( parseInt(Math.min(one_vw, one_vh)*50,10) == compWidth );
|
||
|
});
|
||
|
return bool;
|
||
|
});
|