mirror of https://github.com/lukechilds/docs.git
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.
30 lines
806 B
30 lines
806 B
"use strict";
|
|
var feature, supported = [], unsupported = [];
|
|
|
|
phantom.injectJs('modernizr.js');
|
|
console.log('Detected features (using Modernizr ' + Modernizr._version + '):');
|
|
for (feature in Modernizr) {
|
|
if (Modernizr.hasOwnProperty(feature)) {
|
|
if (feature[0] !== '_' && typeof Modernizr[feature] !== 'function' &&
|
|
feature !== 'input' && feature !== 'inputtypes') {
|
|
if (Modernizr[feature]) {
|
|
supported.push(feature);
|
|
} else {
|
|
unsupported.push(feature);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
console.log('');
|
|
console.log('Supported:');
|
|
supported.forEach(function (e) {
|
|
console.log(' ' + e);
|
|
});
|
|
|
|
console.log('');
|
|
console.log('Not supported:');
|
|
unsupported.forEach(function (e) {
|
|
console.log(' ' + e);
|
|
});
|
|
phantom.exit();
|
|
|