blob: 65ce922dc6f8214298f41001e25864fd35771103 [file] [log] [blame]
<!DOCTYPE html>
<title>This tests the NonDocumentTypeChildNode interface nextElementSibling property on a DocumentType node</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
var doctype = document.doctype;
assert_equals(doctype.nextElementSibling, undefined);
done();
</script>