blob: faf6e3fbb4d390cdae9c97aabdabb2511328b91e [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.
*/
/**
* @description This tests the DOM 4 remove method on an Element.
*/
import "dart:html";
import "../../../../Utils/expect.dart";
import "../../../testcommon.dart";
main() {
document.body.setInnerHtml('''
<div id="test"></div>
''', treeSanitizer: new NullTreeSanitizer());
var testDiv = document.getElementById('test');
var a = document.createElement('a');
testDiv.append(a);
Expect.equals(1, testDiv.childNodes.length);
a.remove();
Expect.equals(0, testDiv.childNodes.length);
a.remove();
Expect.equals(0, testDiv.childNodes.length);
}