(parent, e)
| 8403 | } |
| 8404 | |
| 8405 | function removeChildrenAndAdd(parent, e) { |
| 8406 | return removeChildren(parent).appendChild(e); |
| 8407 | } |
| 8408 | |
| 8409 | var contains = CodeMirror.contains = function(parent, child) { |
| 8410 | if (child.nodeType == 3) // Android browser always returns false when child is a textnode |
no test coverage detected