blob: 9eae630c31c9a56ee54c6055680c4702b59aadf5 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../../resources/js-test-pre.js"></script>
<script>
description('This tests the DOM 4 remove method on a DocumentType node.');
var doctype = document.doctype;
shouldBe('document.childNodes.length', '2');
doctype.remove();
shouldBe('document.childNodes.length', '1');
doctype.remove();
shouldBe('document.childNodes.length', '1');
</script>
<script src="../../../resources/js-test-post.js"></script>