flexboxlegacy.js 401 B

123456789101112131415
  1. /*!
  2. {
  3. "name": "Flexbox (legacy)",
  4. "property": "flexboxlegacy",
  5. "tags": ["css"],
  6. "polyfills": ["flexie"],
  7. "notes": [{
  8. "name": "The _old_ flexbox",
  9. "href": "https://www.w3.org/TR/2009/WD-css3-flexbox-20090723/"
  10. }]
  11. }
  12. !*/
  13. define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
  14. Modernizr.addTest('flexboxlegacy', testAllProps('boxDirection', 'reverse', true));
  15. });