internal static DomMutationEvent Removed(DomElement e, string nodes, string previous = null, string next = null) { return(DomMutationEvent.Removed( e, nodes.Split(' ').Select(n => e.Element(n)), previous == null ? null : e.Element(previous), next == null ? null : e.Element(next) )); }