(b)
| 8797 | this.style.removeProperty(name); |
| 8798 | } |
| 8799 | function styleString(b) { |
| 8800 | return b == null ? styleNull : (b += "", function() { |
| 8801 | var a = d3_window(this).getComputedStyle(this, null).getPropertyValue(name), i; |
| 8802 | return a !== b && (i = d3_interpolate(a, b), function(t) { |
| 8803 | this.style.setProperty(name, i(t), priority); |
| 8804 | }); |
| 8805 | }); |
| 8806 | } |
| 8807 | return d3_transition_tween(this, "style." + name, value, styleString); |
| 8808 | }; |
| 8809 | d3_transitionPrototype.styleTween = function(name, tween, priority) { |
nothing calls this directly
no test coverage detected