0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-09-21 19:46:23 -04:00
Files
elinks/test/js/assert/fragment.new.html

17 lines
262 B
HTML
Raw Normal View History

<!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>