()
| 653 | this.setAttributeNS(name.space, name.local, value); |
| 654 | } |
| 655 | function attrFunction() { |
| 656 | var x = value.apply(this, arguments); |
| 657 | if (x == null) this.removeAttribute(name); else this.setAttribute(name, x); |
| 658 | } |
| 659 | function attrFunctionNS() { |
| 660 | var x = value.apply(this, arguments); |
| 661 | if (x == null) this.removeAttributeNS(name.space, name.local); else this.setAttributeNS(name.space, name.local, x); |
nothing calls this directly
no outgoing calls
no test coverage detected