mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
16 lines
401 B
JavaScript
16 lines
401 B
JavaScript
/*!
|
|
{
|
|
"name": "Flexbox (legacy)",
|
|
"property": "flexboxlegacy",
|
|
"tags": ["css"],
|
|
"polyfills": ["flexie"],
|
|
"notes": [{
|
|
"name": "The _old_ flexbox",
|
|
"href": "https://www.w3.org/TR/2009/WD-css3-flexbox-20090723/"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('flexboxlegacy', testAllProps('boxDirection', 'reverse', true));
|
|
});
|