blob: cfa5be8f225e7233b59fe407428270b985c028e7 [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 set nodes(Iterable<Node> value)
/// @description Checks that nodes list is assignable.
import "dart:html";
import "../../../Utils/expect.dart";
main() {
IFrameElement x = new IFrameElement();
List<Node> nodes = [];
nodes.add(new Text("t1"));
nodes.add(new Comment());
nodes.add(new Text("t2"));
nodes.removeAt(0);
nodes.removeAt(0);
nodes.add(new DivElement());
x.nodes = nodes;
Expect.equals('<iframe>t2<div></div></iframe>', x.outerHtml);
}