(child, ref)
| 60 | return child; |
| 61 | } |
| 62 | replaceChild(child, ref) { |
| 63 | if (ref.parentNode===this) { |
| 64 | this.insertBefore(child, ref); |
| 65 | ref.remove(); |
| 66 | return ref; |
| 67 | } |
| 68 | } |
| 69 | removeChild(child) { |
| 70 | splice(this.childNodes, child); |
| 71 | return child; |
no test coverage detected