(prop)
| 44 | } |
| 45 | |
| 46 | function testProp(prop) { |
| 47 | var prefixed = gimmePrefix(cssToDOM(prop)); |
| 48 | if (prefixed) { |
| 49 | it('results for ' + prop + ' match the homebaked prefix finder', function() { |
| 50 | expect(Modernizr.prefixedCSS(prop)).to.be.equal(domToCSS(prefixed)); |
| 51 | }); |
| 52 | } else { |
| 53 | it('results for ' + prop + ' match the homebaked prefix finder', function() { |
| 54 | expect(Modernizr.prefixedCSS(prop)).to.be.equal(false); |
| 55 | }); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | testProp('animationProperty'); |
| 60 | testProp('fontFeatureSettings'); |
no test coverage detected
searching dependent graphs…