blob: a39142d9992e71818d3deebbad4e181e60d54344 [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.
*/
/**
* @assertion Node append(Node newChild)
* Adds a node to the end of the child nodes list of this node.
* @description Checks expected lastChild after append
*/
import "dart:html";
import "../../../Utils/expect.dart";
void check(Node x) {
var y = new Comment("Comment");
x.append(y);
Expect.equals(y, x.lastChild);
y = new Text('text');
x.append(y);
Expect.equals(y, x.lastChild);
}
main() {
List<Node> targets=[
new IFrameElement(),
new DocumentFragment(),
];
for (Node x in targets) {
check(x);
}
}