blob: 0a64be39e9e84b9d3ad8e33fab86f52893002384 [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
* @description
*/
import "dart:html";
import "../../../Utils/expect.dart";
const String htmlEL2 = r'''
<!-- comment --><DIV id="target"></DIV>
''';
void main() {
document.body.appendHtml(htmlEL2);
var target = document.getElementById("target");
Expect.isTrue(target is DivElement);
}