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