mirror of
https://github.com/rkd77/elinks.git
synced 2025-06-30 22:19:29 -04:00
17 lines
262 B
HTML
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>
|