(str)
| 3796 | } |
| 3797 | |
| 3798 | function parseCssFloat(str) { // float or percentage. |
| 3799 | if (str.length && str.charAt(str.length - 1) === '%') { |
| 3800 | return clampCssFloat(parseFloat(str) / 100); |
| 3801 | } |
| 3802 | return clampCssFloat(parseFloat(str)); |
| 3803 | } |
| 3804 | |
| 3805 | function cssHueToRgb(m1, m2, h) { |
| 3806 | if (h < 0) { |
no test coverage detected