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

17 lines
262 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
function myFunction() {
var fragment = new DocumentFragment;
console.assert(fragment.nodeType === 11, 'DocumentFragment');
}
console.error('fragment.new.html');
myFunction();
console.exit();
</script>
</body>
</html>