(name, value)
| 4636 | }; |
| 4637 | |
| 4638 | var warnStyleValueIsInfinity = function (name, value) { |
| 4639 | if (warnedForInfinityValue) { |
| 4640 | return; |
| 4641 | } |
| 4642 | |
| 4643 | warnedForInfinityValue = true; |
| 4644 | |
| 4645 | error('`Infinity` is an invalid value for the `%s` css style property.', name); |
| 4646 | }; |
| 4647 | |
| 4648 | warnValidStyle = function (name, value) { |
| 4649 | if (name.indexOf('-') > -1) { |
no test coverage detected