blob: e2fb8d0824547b5d6bd676c56fe533b7b85375e1 [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart = 2.9
/// @assertion Node replaceWith(Node otherNode)
/// Replaces this node with another node.
/// @description Checks expected dom after replace
import "dart:html";
import "../../../Utils/expect.dart";
void check(Node x) {
var body = document.body;
body.append(x);
Expect.equals(x, body.lastChild, "lastChild after append");
var newElem = new AnchorElement();
x.replaceWith(newElem);
Expect.equals(newElem, body.lastChild, "lastChild after remove");
}
main() {
List<Node> targets = [
new Text("Text1"),
new Comment("Comment"),
// new DocumentFragment(),
];
for (Node x in targets) {
check(x);
}
}