(parent, e)
| 8435 | } |
| 8436 | |
| 8437 | function removeChildrenAndAdd(parent, e) { |
| 8438 | return removeChildren(parent).appendChild(e); |
| 8439 | } |
| 8440 | |
| 8441 | var contains = CodeMirror.contains = function(parent, child) { |
| 8442 | if (child.nodeType == 3) // Android browser always returns false when child is a textnode |
no test coverage detected