0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-06-30 22:19:29 -04:00
elinks/test/js/assert/document.new.html
2024-11-14 15:28:02 +01:00

17 lines
234 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
function myFunction() {
var doc = new Document;
console.assert(doc.nodeType === 9, 'new doc');
}
console.error('document.new.html');
myFunction();
console.exit();
</script>
</body>
</html>