function testCSSProps() {
for (var i = 0; i < arguments.length; i++){
if (!(arguments[i] in document.body.style))
return false;
}
return true;
}
if (!testCSSProps('flexWrap', 'flexBasis', 'flexShrink')) {
document.location.href = '/страница_с_заглушкой.html';
}