blob: c1e5462ee2fac3f6dd019edea362c44c9c42846d [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>
setup({single_test: true});
var doctype = document.doctype;
assert_equals(doctype.nextElementSibling, undefined);
done();
</script>