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