(b)
| 7604 | this.style.removeProperty(name); |
| 7605 | } |
| 7606 | function styleString(b) { |
| 7607 | return b == null ? styleNull : (b += "", function() { |
| 7608 | var a = d3_window.getComputedStyle(this, null).getPropertyValue(name), i; |
| 7609 | return a !== b && (i = d3_interpolate(a, b), function(t) { |
| 7610 | this.style.setProperty(name, i(t), priority); |
| 7611 | }); |
| 7612 | }); |
| 7613 | } |
| 7614 | return d3_transition_tween(this, "style." + name, value, styleString); |
| 7615 | }; |
| 7616 | d3_transitionPrototype.styleTween = function(name, tween, priority) { |
nothing calls this directly
no test coverage detected